increments('id'); $table->string('name'); $table->integer('country_id')->unsigned()->index(); $table->foreign('country_id')->references('id')->on('countries'); $table->integer('status')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('provinces'); } }