cattr-app/server-application

View on GitHub
database/migrations/2021_01_08_113525_create_projects_statuses_table.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class CreateProjectsStatusesTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('projects_statuses', function (Blueprint $table) {
            $table->unsignedInteger('project_id');
            $table->unsignedBigInteger('status_id');
            $table->string('color')->nullable();
            $table->timestamps();

            $table->foreign('project_id')->references('id')->on('projects');
            $table->foreign('status_id')->references('id')->on('statuses');

            $table->primary(['project_id', 'status_id'], 'projects_statuses_id');
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('projects_statuses');
    }
}