mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 23:23:15 +08: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
|