Browse Source
* [EC-756] Add missing Postgres migration script * [EC-756] Add missing MySQL migration scriptpull/2416/head
2 changed files with 16 additions and 0 deletions
@ -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