increments('id'); $table->string('name')->nullable(); $table->string('city')->nullable(); $table->string('state',2)->nullable(); $table->string('country',2)->nullable(); $table->timestamps(); $table->integer('user_id')->nullable(); $table->engine = 'InnoDB'; }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('locations'); } }