1
0
mirror of https://github.com/bitwarden/server synced 2026-01-02 00:23:40 +00:00

Fix typos in EF migrations (#1693)

* Fix typos in postgres migrations

* Fix extension of migration script
This commit is contained in:
Thomas Rittson
2021-11-09 07:40:01 +10:00
committed by GitHub
parent 7cc7b84eaf
commit f6bc35b2d0
3 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
START TRANSACTION;
ALTER TABLE `Organization` ADD `MaxAutoscaleSeats` int NULL;
ALTER TABLE `Organization` ADD `OwnersNotifiedOfAutoscaling` datetime(6) NULL;
ALTER TABLE `Event` ADD `ProviderOrganizationId` char(36) COLLATE ascii_general_ci NULL;
INSERT INTO `__EFMigrationsHistory` (`MigrationId`, `ProductVersion`)
VALUES ('20210921132418_AddMaxAutoscaleSeatsToOrganization', '5.0.9');
COMMIT;