mirror of
https://github.com/bitwarden/server
synced 2026-01-21 03:43:53 +00:00
added installations, push scoped tokens, push api
This commit is contained in:
9
src/Sql/dbo/Tables/Installation.sql
Normal file
9
src/Sql/dbo/Tables/Installation.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
CREATE TABLE [dbo].[Installation] (
|
||||
[Id] UNIQUEIDENTIFIER NOT NULL,
|
||||
[Email] NVARCHAR (50) NOT NULL,
|
||||
[Key] VARCHAR (150) NOT NULL,
|
||||
[Enabled] BIT NOT NULL,
|
||||
[CreationDate] DATETIME2 (7) NOT NULL,
|
||||
CONSTRAINT [PK_Installation] PRIMARY KEY CLUSTERED ([Id] ASC)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user