mirror of
https://github.com/bitwarden/server.git
synced 2025-02-15 01:41:40 +01:00
13 lines
393 B
Plaintext
13 lines
393 B
Plaintext
|
START TRANSACTION;
|
||
|
|
||
|
ALTER TABLE "Organization" ADD "MaxAutoscaleSeats" integer NULL;
|
||
|
|
||
|
ALTER TABLE "Organization" ADD "OwnersNotifiedOfAutoscaling" timestamp without time zone NULL;
|
||
|
|
||
|
ALTER TABLE "Event" ADD "ProviderOrganizationId" uuid NULL;
|
||
|
|
||
|
INSERT INTO "__EFMigrationsHistory" ("MigrationId", "ProductVersion")
|
||
|
VALUES ('20210920201829_AddMaxAutoscaleSeatsToOrganization', '5.0.9');
|
||
|
|
||
|
COMMIT;
|