관리-도구
편집 파일: 2023_09_02_010523_create_ecommerce_clients_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateEcommerceClientsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('ecommerce_clients', function(Blueprint $table) { $table->integer('id', true); $table->integer('client_id')->index('ecommerce_clients_client_id'); $table->string('username', 192); $table->string('email', 192); $table->dateTime('email_verified_at')->nullable(); $table->string('password', 191); $table->string('remember_token', 100)->nullable(); $table->boolean('status')->default(1); $table->timestamps(6); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('ecommerce_clients'); } }