mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 23:23:15 +08: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;
|