1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 09:02:48 -05:00

[EC-427] Provider table Type and BillingPhone Postgres migrations

This commit is contained in:
Rui Tome
2022-12-27 10:27:52 +00:00
parent 3814b601b9
commit de1af22c0b
4 changed files with 1750 additions and 1 deletions

View File

@ -0,0 +1,10 @@
START TRANSACTION;
ALTER TABLE "Provider" ADD "BillingPhone" text NULL;
ALTER TABLE "Provider" ADD "Type" smallint NOT NULL DEFAULT 0;
INSERT INTO "__EFMigrationsHistory" ("MigrationId", "ProductVersion")
VALUES ('20221227100237_ProviderAddProviderTypeBillingPhone', '6.0.12');
COMMIT;