mirror of
https://github.com/bitwarden/server.git
synced 2024-12-01 13:43:23 +01:00
14 lines
153 B
MySQL
14 lines
153 B
MySQL
|
alter table [user] drop column twofactorenabled
|
||
|
go
|
||
|
|
||
|
drop view [dbo].[UserView]
|
||
|
go
|
||
|
|
||
|
CREATE VIEW [dbo].[UserView]
|
||
|
AS
|
||
|
SELECT
|
||
|
*
|
||
|
FROM
|
||
|
[dbo].[User]
|
||
|
GO
|