- Remove unused FeaturesController (empty stubs, no routes) - Remove ConvertSpatialFile CLI command (unused; service used in LayerManager) - Remove MigrateGeojsonToFeatures CLI command (one-shot migration, not referenced) - Remove .claude/worktrees/ (11 old agent worktrees from June) - Apply Laravel Pint formatting across 219 files (style only, no functional changes) Tests: 101 passing (319 assertions) API routes: unchanged (8 routes intact)
29 lines
890 B
PHP
29 lines
890 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()
|
|
{
|
|
Schema::create('layers', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->foreignId('project_id')->constrained()->onDelete('cascade');
|
|
$table->foreignId('phase_id')->nullable()->constrained()->onDelete('set null');
|
|
$table->string('name');
|
|
$table->string('color', 7)->default('#3b82f6');
|
|
$table->string('original_file')->nullable(); // path to original uploaded file
|
|
$table->foreignId('uploaded_by')->constrained('users');
|
|
$table->timestamps();
|
|
$table->softDeletes();
|
|
});
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('layers');
|
|
}
|
|
};
|