mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-04 01:55:10 +02:00
Add ability for sticky sessions to backend resource.
This commit is contained in:
parent
8b0c30f19f
commit
ac8e315fbd
6 changed files with 99 additions and 9 deletions
|
@ -77,7 +77,10 @@ export const resources = sqliteTable("resources", {
|
|||
applyRules: integer("applyRules", { mode: "boolean" })
|
||||
.notNull()
|
||||
.default(false),
|
||||
enabled: integer("enabled", { mode: "boolean" }).notNull().default(true)
|
||||
enabled: integer("enabled", { mode: "boolean" }).notNull().default(true),
|
||||
stickySession: integer("stickySession", { mode: "boolean" })
|
||||
.notNull()
|
||||
.default(false)
|
||||
});
|
||||
|
||||
export const targets = sqliteTable("targets", {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue