mirror of
https://github.com/bitwarden/server.git
synced 2025-07-06 10:32:49 -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;
|
@ -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;
|
Reference in New Issue
Block a user