mirror of
https://github.com/bitwarden/server.git
synced 2024-11-29 13:25:17 +01:00
13 lines
324 B
Plaintext
13 lines
324 B
Plaintext
START TRANSACTION;
|
|
|
|
DROP TABLE "ProviderOrganizationProviderUser";
|
|
|
|
ALTER TABLE "Event" ADD "ProviderId" uuid NULL;
|
|
|
|
ALTER TABLE "Event" ADD "ProviderUserId" uuid NULL;
|
|
|
|
INSERT INTO "__EFMigrationsHistory" ("MigrationId", "ProductVersion")
|
|
VALUES ('20210709092227_RemoveProviderOrganizationProviderUser', '5.0.5');
|
|
|
|
COMMIT;
|