1
0
mirror of https://github.com/bitwarden/server synced 2025-12-28 14:13:48 +00:00

[EC-427] Add columns 'Type' and 'BillingPhone' to Provider table

This commit is contained in:
Rui Tome
2022-12-26 17:03:24 +00:00
parent c39fb8f7af
commit 81027a6bc1
7 changed files with 201 additions and 1 deletions

View File

@@ -8,7 +8,9 @@
@BusinessCountry VARCHAR(2),
@BusinessTaxNumber NVARCHAR(30),
@BillingEmail NVARCHAR(256),
@BillingPhone NVARCHAR(50),
@Status TINYINT,
@Type TINYINT,
@UseEvents BIT,
@Enabled BIT,
@CreationDate DATETIME2(7),
@@ -28,7 +30,9 @@ BEGIN
[BusinessCountry],
[BusinessTaxNumber],
[BillingEmail],
[BillingPhone],
[Status],
[Type],
[UseEvents],
[Enabled],
[CreationDate],
@@ -45,7 +49,9 @@ BEGIN
@BusinessCountry,
@BusinessTaxNumber,
@BillingEmail,
@BillingPhone,
@Status,
@Type,
@UseEvents,
@Enabled,
@CreationDate,