tuitio/IdentityServer.Domain.Data/Scripts/1.0.1/04.UserToken table.sql

12 lines
371 B
Transact-SQL

if not exists (select top 1 1 from sys.objects where name = 'UserToken' and type = 'U')
begin
create table UserToken
(
Id int identity(1, 1) constraint PK_Token primary key,
UserId int not null constraint FK_Token_AppUser foreign key references AppUser(UserId),
Token varchar(1000) not null,
ValidFrom datetime not null,
ValidUntil datetime not null
)
end
go