관리-도구
편집 파일: 2024_07_11_141607_create_projects_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateProjectsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('projects', function(Blueprint $table) { $table->engine = 'InnoDB'; $table->integer('id', true); $table->string('title'); $table->integer('client_id')->index('projects_client_id'); $table->date('start_date'); $table->date('end_date'); $table->text('description')->nullable(); $table->integer('company_id')->index('projects_company_id'); $table->string('status'); $table->timestamps(6); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('projects'); } }