id(); $table->unsignedBigInteger('nation_id'); $table->foreign('nation_id')->nullable()->references('id')->on('nations')->onUpdate('cascade')->onDelete('cascade'); $table->string('code', 5)->nullable(); $table->string('name'); $table->integer('enabled')->default(1); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('provinces'); } };