Browse Source

Create index

pull/4479/head
Thomas Kaul 3 weeks ago
parent
commit
e1e6afdb29
  1. 3
      prisma/migrations/20250324072407_added_is_active_to_symbol_profile/migration.sql

3
prisma/migrations/20250324072407_added_is_active_to_symbol_profile/migration.sql

@ -1,2 +1,5 @@
-- AlterTable
ALTER TABLE "SymbolProfile" ADD COLUMN "isActive" BOOLEAN NOT NULL DEFAULT true;
-- CreateIndex
CREATE INDEX "SymbolProfile_isActive_idx" ON "SymbolProfile"("isActive");

Loading…
Cancel
Save