CREATE TABLE [dbo].[UserKnoks]
(
[UserId] BIGINT NOT NULL ,
[KnokId] BIGINT NOT NULL,
[BuyDate] DATETIME NOT NULL,
PRIMARY KEY ([UserId], [KnokId])
)