mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
Merge pull request #1182 from Dokploy/fix/disable-turn-off-cleanup
fix: turnoff cleanup cache
This commit is contained in:
commit
c6569f70e4
1
apps/dokploy/drizzle/0059_striped_bill_hollister.sql
Normal file
1
apps/dokploy/drizzle/0059_striped_bill_hollister.sql
Normal file
@ -0,0 +1 @@
|
||||
ALTER TABLE "admin" ALTER COLUMN "cleanupCacheApplications" SET DEFAULT false;
|
4341
apps/dokploy/drizzle/meta/0059_snapshot.json
Normal file
4341
apps/dokploy/drizzle/meta/0059_snapshot.json
Normal file
File diff suppressed because it is too large
Load Diff
@ -414,6 +414,13 @@
|
||||
"when": 1737612903012,
|
||||
"tag": "0058_brown_sharon_carter",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 59,
|
||||
"version": "6",
|
||||
"when": 1737615160768,
|
||||
"tag": "0059_striped_bill_hollister",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
@ -33,7 +33,7 @@ export const admins = pgTable("admin", {
|
||||
serversQuantity: integer("serversQuantity").notNull().default(0),
|
||||
cleanupCacheApplications: boolean("cleanupCacheApplications")
|
||||
.notNull()
|
||||
.default(true),
|
||||
.default(false),
|
||||
cleanupCacheOnPreviews: boolean("cleanupCacheOnPreviews")
|
||||
.notNull()
|
||||
.default(false),
|
||||
|
Loading…
Reference in New Issue
Block a user