mirror of
https://github.com/bitwarden/server.git
synced 2025-01-01 18:37:35 +01:00
8 lines
231 B
MySQL
8 lines
231 B
MySQL
|
START TRANSACTION;
|
||
|
|
||
|
ALTER TABLE `OrganizationUser` MODIFY COLUMN `Status` smallint NOT NULL;
|
||
|
|
||
|
INSERT INTO `__EFMigrationsHistory` (`MigrationId`, `ProductVersion`)
|
||
|
VALUES ('20220608191914_DeactivatedUserStatus', '5.0.12');
|
||
|
|
||
|
COMMIT;
|