mirror of
https://github.com/bitwarden/server.git
synced 2026-02-08 18:03:11 +08:00
9 lines
250 B
MySQL
9 lines
250 B
MySQL
|
|
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;
|