mirror of
https://github.com/bitwarden/server.git
synced 2024-12-01 13:43:23 +01:00
c377a50b9d
* [EC-756] Add missing Postgres migration script * [EC-756] Add missing MySQL migration script
8 lines
212 B
SQL
8 lines
212 B
SQL
START TRANSACTION;
|
|
|
|
ALTER TABLE `Event` ADD `SystemUser` tinyint unsigned NULL;
|
|
|
|
INSERT INTO `__EFMigrationsHistory` (`MigrationId`, `ProductVersion`)
|
|
VALUES ('20220927142038_EventsSystemUser', '6.0.4');
|
|
|
|
COMMIT; |