관리-도구
편집 파일: 2021_03_08_020247_create_users_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateUsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('users', function(Blueprint $table) { $table->engine = 'InnoDB'; $table->integer('id', true); $table->string('firstname'); $table->string('lastname'); $table->string('username', 192); $table->string('email', 192); $table->string('password'); $table->string('avatar')->nullable(); $table->string('phone', 192); $table->integer('role_id'); $table->boolean('statut')->default(1); $table->timestamps(6); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('users'); } }