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