Knocks/BackEnd/Knoks.Operate/Tables/UserFollows.sql

7 lines
149 B
Transact-SQL

CREATE TABLE [dbo].[UserFollows]
(
[UserId] BIGINT NOT NULL ,
[FollowUserId] BIGINT NOT NULL,
PRIMARY KEY ([UserId], [FollowUserId])
)