D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
shaghela.online
/
database
/
migrations
/
Filename :
2021_05_30_070726_create_states_table.php
back
Copy
<?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->engine = 'InnoDB'; $table->increments('id'); $table->string('name', 255); $table->integer('country_id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('states'); } }