관리-도구
편집 파일: 2022_02_18_161351_create_companies_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateCompaniesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('companies', function(Blueprint $table) { $table->engine = 'InnoDB'; $table->integer('id', true); $table->string('name', 191); $table->string('email', 191)->nullable(); $table->string('phone', 191)->nullable(); $table->string('country', 191)->nullable(); $table->timestamps(6); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('companies'); } }