1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-23 12:25:16 +01:00
bitwarden-server/util/SqlUpdate/2017-06-19_00_UserTwoFactorEnabled.sql
2017-06-24 17:16:05 -04:00

17 lines
208 B
Transact-SQL

alter table [user] drop column twofactorenabled
go
alter table [user] drop column [twofactorprovider]
go
drop view [dbo].[UserView]
go
CREATE VIEW [dbo].[UserView]
AS
SELECT
*
FROM
[dbo].[User]
GO