관리-도구
편집 파일: 2022_02_18_161351_create_designations_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateDesignationsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('designations', function(Blueprint $table) { $table->engine = 'InnoDB'; $table->integer('id', true); $table->integer('company_id')->index('designation_company_id'); $table->integer('department_id')->index('designation_departement_id'); $table->string('designation', 192); $table->timestamps(6); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('designations'); } }