mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-30 12:49:43 +00:00
Make extendedCompatibility on by default
This commit is contained in:
parent
8ea6b0cd9e
commit
1d5d856799
4 changed files with 4 additions and 4 deletions
|
|
@ -644,7 +644,7 @@ export const resourceHeaderAuthExtendedCompatibility = sqliteTable("resourceHead
|
|||
resourceId: integer("resourceId")
|
||||
.notNull()
|
||||
.references(() => resources.resourceId, {onDelete: "cascade"}),
|
||||
extendedCompatibilityIsActivated: integer("extendedCompatibilityIsActivated", {mode: "boolean"}).notNull()
|
||||
extendedCompatibilityIsActivated: integer("extendedCompatibilityIsActivated", {mode: "boolean"}).notNull().default(true)
|
||||
});
|
||||
|
||||
export const resourceAccessToken = sqliteTable("resourceAccessToken", {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue