mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 07:36:14 -05:00
[EC-756] Add missing EF scripts to add new 'Events' table 'SystemUser' column (#2414)
* [EC-756] Add missing Postgres migration script * [EC-756] Add missing MySQL migration script
This commit is contained in:
@ -0,0 +1,8 @@
|
||||
START TRANSACTION;
|
||||
|
||||
ALTER TABLE `Event` ADD `SystemUser` tinyint unsigned NULL;
|
||||
|
||||
INSERT INTO `__EFMigrationsHistory` (`MigrationId`, `ProductVersion`)
|
||||
VALUES ('20220927142038_EventsSystemUser', '6.0.4');
|
||||
|
||||
COMMIT;
|
Reference in New Issue
Block a user