source: src/FinkiChattery/FinkiChattery.Database/dbo/Tables/Moderator.sql@ 5cbb557

dev
Last change on this file since 5cbb557 was e6a6d9a, checked in by Стојков Марко <mst@…>, 3 years ago

Initialized FinkiChattery project

  • Property mode set to 100644
File size: 527 bytes
RevLine 
[e6a6d9a]1CREATE TABLE [dbo].[Moderator] (
2 [Id] BIGINT IDENTITY (1, 1) NOT NULL,
3 [Uid] UNIQUEIDENTIFIER NOT NULL,
4 [ApplicationUserFk] BIGINT NOT NULL,
5 CONSTRAINT [PK_Moderator] PRIMARY KEY CLUSTERED ([Id] ASC),
6 CONSTRAINT [FK_Moderator_AspNetUsers_ApplicationUserFk] FOREIGN KEY ([ApplicationUserFk]) REFERENCES [dbo].[AspNetUsers] ([Id])
7);
8
9
10GO
11CREATE UNIQUE NONCLUSTERED INDEX [IX_Moderator_ApplicationUserFk]
12 ON [dbo].[Moderator]([ApplicationUserFk] ASC);
13
Note: See TracBrowser for help on using the repository browser.