2024-04-27 15:06:00 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
|
|
|
|
return new class extends Migration
|
|
|
|
{
|
|
|
|
public function up(): void
|
|
|
|
{
|
|
|
|
Schema::create('labels', function (Blueprint $table) {
|
|
|
|
$table->id();
|
2024-04-27 16:32:03 +03:00
|
|
|
$table->string('name', 255);
|
2024-05-30 16:52:51 +03:00
|
|
|
$table->foreignId('project_id')->nullable()->constrained('projects');
|
2024-04-27 15:06:00 +03:00
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public function down(): void
|
|
|
|
{
|
|
|
|
Schema::dropIfExists('labels');
|
|
|
|
}
|
|
|
|
};
|