mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
fix: turnoff cleanup cache
This commit is contained in:
parent
dba39b6364
commit
d5c9338f51
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,
|
"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
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
@ -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),
|
||||||
|
Loading…
Reference in New Issue
Block a user