feat(settings): add simple-ping settings (#2118)
This commit is contained in:
1
packages/db/migrations/mysql/0024_mean_vin_gonzales.sql
Normal file
1
packages/db/migrations/mysql/0024_mean_vin_gonzales.sql
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE `board` ADD `disable_status` boolean DEFAULT false NOT NULL;
|
||||
1772
packages/db/migrations/mysql/meta/0024_snapshot.json
Normal file
1772
packages/db/migrations/mysql/meta/0024_snapshot.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -169,6 +169,13 @@
|
||||
"when": 1738687012272,
|
||||
"tag": "0023_fix_on_delete_actions",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 24,
|
||||
"version": "5",
|
||||
"when": 1738961147412,
|
||||
"tag": "0024_mean_vin_gonzales",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
1
packages/db/migrations/sqlite/0024_bitter_scrambler.sql
Normal file
1
packages/db/migrations/sqlite/0024_bitter_scrambler.sql
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE `board` ADD `disable_status` integer DEFAULT false NOT NULL;
|
||||
1697
packages/db/migrations/sqlite/meta/0024_snapshot.json
Normal file
1697
packages/db/migrations/sqlite/meta/0024_snapshot.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -169,6 +169,13 @@
|
||||
"when": 1738686324915,
|
||||
"tag": "0023_fix_on_delete_actions",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 24,
|
||||
"version": "6",
|
||||
"when": 1738961178990,
|
||||
"tag": "0024_bitter_scrambler",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -272,6 +272,7 @@ export const boards = mysqlTable("board", {
|
||||
opacity: int().default(100).notNull(),
|
||||
customCss: text(),
|
||||
columnCount: int().default(10).notNull(),
|
||||
disableStatus: boolean().default(false).notNull(),
|
||||
});
|
||||
|
||||
export const boardUserPermissions = mysqlTable(
|
||||
|
||||
@@ -258,6 +258,7 @@ export const boards = sqliteTable("board", {
|
||||
opacity: int().default(100).notNull(),
|
||||
customCss: text(),
|
||||
columnCount: int().default(10).notNull(),
|
||||
disableStatus: int({ mode: "boolean" }).default(false).notNull(),
|
||||
});
|
||||
|
||||
export const boardUserPermissions = sqliteTable(
|
||||
|
||||
Reference in New Issue
Block a user