mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-25 00:58:48 -06:00
chore: simplify action indexes (#2442)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
-- DropIndex
|
||||
DROP INDEX "Action_created_at_idx";
|
||||
|
||||
-- DropIndex
|
||||
DROP INDEX "Action_personId_idx";
|
||||
|
||||
-- CreateIndex
|
||||
CREATE INDEX "Action_personId_created_at_idx" ON "Action"("personId", "created_at");
|
||||
@@ -358,8 +358,7 @@ model Action {
|
||||
|
||||
@@index([personId, actionClassId, createdAt])
|
||||
@@index([actionClassId, createdAt])
|
||||
@@index([personId])
|
||||
@@index([createdAt])
|
||||
@@index([personId, createdAt])
|
||||
}
|
||||
|
||||
enum EnvironmentType {
|
||||
|
||||
Reference in New Issue
Block a user