mirror of
https://github.com/bitwarden/server.git
synced 2025-07-08 11:24:33 -05:00
remove user twofactorenabled property
This commit is contained in:
13
util/SqlUpdate/2017-06-19_00_UserTwoFactorEnabled.sql
Normal file
13
util/SqlUpdate/2017-06-19_00_UserTwoFactorEnabled.sql
Normal file
@ -0,0 +1,13 @@
|
||||
alter table [user] drop column twofactorenabled
|
||||
go
|
||||
|
||||
drop view [dbo].[UserView]
|
||||
go
|
||||
|
||||
CREATE VIEW [dbo].[UserView]
|
||||
AS
|
||||
SELECT
|
||||
*
|
||||
FROM
|
||||
[dbo].[User]
|
||||
GO
|
Reference in New Issue
Block a user