1
0
Fork 1
Spiegel von https://github.com/dani-garcia/vaultwarden.git synchronisiert 2025-03-12 16:47:03 +01:00

Copy add_manage migration for DSQL

Dieser Commit ist enthalten in:
Chase Douglas 2025-02-13 11:54:43 -08:00
Ursprung ed26fa3640
Commit bdab7b49ee
3 geänderte Dateien mit 9 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -0,0 +1 @@
run_in_transaction = false

Datei anzeigen

@ -0,0 +1,8 @@
-- DSQL preview can't add columns with constraints, dropping `NOT NULL DEFAULT FALSE` constraint
-- It appears Diesel will ensure the column has appropriate values when saving records.
ALTER TABLE users_collections
ADD COLUMN manage BOOLEAN;
ALTER TABLE collections_groups
ADD COLUMN manage BOOLEAN;