fix: turnoff cleanup cache

This commit is contained in:
Mauricio Siu 2025-01-23 00:53:21 -06:00
parent dba39b6364
commit d5c9338f51
4 changed files with 4350 additions and 1 deletions

View File

@ -0,0 +1 @@
ALTER TABLE "admin" ALTER COLUMN "cleanupCacheApplications" SET DEFAULT false;

File diff suppressed because it is too large Load Diff

View File

@ -414,6 +414,13 @@
"when": 1737612903012, "when": 1737612903012,
"tag": "0058_brown_sharon_carter", "tag": "0058_brown_sharon_carter",
"breakpoints": true "breakpoints": true
},
{
"idx": 59,
"version": "6",
"when": 1737615160768,
"tag": "0059_striped_bill_hollister",
"breakpoints": true
} }
] ]
} }

View File

@ -33,7 +33,7 @@ export const admins = pgTable("admin", {
serversQuantity: integer("serversQuantity").notNull().default(0), serversQuantity: integer("serversQuantity").notNull().default(0),
cleanupCacheApplications: boolean("cleanupCacheApplications") cleanupCacheApplications: boolean("cleanupCacheApplications")
.notNull() .notNull()
.default(true), .default(false),
cleanupCacheOnPreviews: boolean("cleanupCacheOnPreviews") cleanupCacheOnPreviews: boolean("cleanupCacheOnPreviews")
.notNull() .notNull()
.default(false), .default(false),