mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
re-import db
This commit is contained in:
parent
0c84f9c151
commit
03f3118182
@ -1,5 +1,5 @@
|
||||
CREATE TABLE [dbo].[U2f] (
|
||||
[Id] INT NOT NULL IDENTITY,
|
||||
[Id] INT IDENTITY (1, 1) NOT NULL,
|
||||
[UserId] UNIQUEIDENTIFIER NOT NULL,
|
||||
[KeyHandle] VARCHAR (50) NOT NULL,
|
||||
[Challenge] VARCHAR (50) NOT NULL,
|
||||
@ -9,3 +9,4 @@
|
||||
CONSTRAINT [PK_U2f] PRIMARY KEY CLUSTERED ([Id] ASC),
|
||||
CONSTRAINT [FK_U2f_User] FOREIGN KEY ([UserId]) REFERENCES [dbo].[User] ([Id])
|
||||
);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user