pp-planer/database/migrations/2026_05_03_100100_create_labels_table.php
Thorsten Bus 767e22eac8 feat(db): create labels table for global slide labels
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
2026-05-03 22:10:35 +02:00

25 lines
659 B
PHP

<?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();
$table->string('name')->unique();
$table->string('color', 7)->nullable();
$table->timestamp('hidden_at')->nullable();
$table->timestamp('last_imported_at')->nullable();
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('labels');
}
};