string('name'); $table->string('state_code')->nullable(); $table->integer('province_id')->unsigned()->nullable(); $table->foreign('province_id')->references('id')->on('provinces'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('cities'); } }