mirror of
https://github.com/bitwarden/server.git
synced 2025-01-25 22:21:38 +01: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:
parent
abaa084d01
commit
c377a50b9d
@ -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;
|
@ -0,0 +1,8 @@
|
||||
START TRANSACTION;
|
||||
|
||||
ALTER TABLE "Event" ADD "SystemUser" smallint NULL;
|
||||
|
||||
INSERT INTO "__EFMigrationsHistory" ("MigrationId", "ProductVersion")
|
||||
VALUES ('20220927142152_EventsSystemUser', '6.0.4');
|
||||
|
||||
COMMIT;
|
Loading…
Reference in New Issue
Block a user