mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-07-15 16:51:14 +00:00
8 lines
302 B
SQL
8 lines
302 B
SQL
-- 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;
|