관리-도구
편집 파일: 2021_03_08_020247_create_role_user_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateRoleUserTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('role_user', function(Blueprint $table) { $table->engine = 'InnoDB'; $table->integer('id', true); $table->integer('user_id')->index('role_user_user_id'); $table->integer('role_id')->index('role_user_role_id'); $table->timestamps(6); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('role_user'); } }