1
0
mirror of https://github.com/bitwarden/server synced 2025-12-11 13:53:40 +00:00

re-import db

This commit is contained in:
Kyle Spearrin
2017-06-21 16:59:11 -04:00
parent 0c84f9c151
commit 03f3118182
3 changed files with 4 additions and 3 deletions

View File

@@ -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])
);