mirror of
https://github.com/bitwarden/server.git
synced 2025-07-04 17:42:49 -05:00
9 lines
250 B
SQL
9 lines
250 B
SQL
START TRANSACTION;
|
|
|
|
ALTER TABLE `Organization` ADD `UseCustomPermissions` tinyint(1) NOT NULL DEFAULT FALSE;
|
|
|
|
INSERT INTO `__EFMigrationsHistory` (`MigrationId`, `ProductVersion`)
|
|
VALUES ('20221020154432_UseCustomPermissionsFlag', '6.0.4');
|
|
|
|
COMMIT;
|