refactor(migration): remove unnecessary index on team_id in cloud_init_scripts table

This commit is contained in:
Andras Bacsai
2025-11-18 12:27:22 +01:00
parent e97222aef2
commit 6fc8570551

View File

@@ -17,8 +17,6 @@ return new class extends Migration
$table->string('name'); $table->string('name');
$table->text('script'); // Encrypted in the model $table->text('script'); // Encrypted in the model
$table->timestamps(); $table->timestamps();
$table->index('team_id');
}); });
} }