1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 17:12:49 -05:00

[EC-427] Updated Sql project Provider table script

This commit is contained in:
Rui Tome
2023-01-11 14:51:00 +00:00
parent 40fca094a2
commit fd605dc690
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ BEGIN
ALTER TABLE
[dbo].[Provider]
ADD
[Type] TINYINT NOT NULL CONSTRAINT DF_Provider_Type DEFAULT 0;
[Type] TINYINT NOT NULL CONSTRAINT DF_Provider_Type DEFAULT (0);
END
GO