mirror of
https://github.com/bitwarden/server.git
synced 2026-02-01 22:53:12 +08:00
8 lines
212 B
MySQL
8 lines
212 B
MySQL
|
|
START TRANSACTION;
|
||
|
|
|
||
|
|
ALTER TABLE `Event` ADD `SystemUser` tinyint unsigned NULL;
|
||
|
|
|
||
|
|
INSERT INTO `__EFMigrationsHistory` (`MigrationId`, `ProductVersion`)
|
||
|
|
VALUES ('20220927142038_EventsSystemUser', '6.0.4');
|
||
|
|
|
||
|
|
COMMIT;
|