36 lines
907 B
PHP
36 lines
907 B
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Database\Migrations\Migration;
|
||
|
use Illuminate\Database\Schema\Blueprint;
|
||
|
use Illuminate\Support\Facades\Schema;
|
||
|
|
||
|
class CreateStatesTable extends Migration
|
||
|
{
|
||
|
/**
|
||
|
* Run the migrations.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function up()
|
||
|
{
|
||
|
Schema::create('states', function (Blueprint $table) {
|
||
|
$table->id();
|
||
|
$table->string('state_name')->nullable();
|
||
|
$table->bigInteger('country_id')->unsigned()->index()->nullable();
|
||
|
$table->foreign('country_id')->references('id')->on('countries')->onUpdate('cascade')->onDelete('cascade');
|
||
|
$table->enum('status',['Active','Inactive'])->default('Active');
|
||
|
$table->timestamps();
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Reverse the migrations.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function down()
|
||
|
{
|
||
|
Schema::dropIfExists('states');
|
||
|
}
|
||
|
}
|