2017-10-14 07:39:22 +00:00
|
|
|
CREATE TABLE [users_replies] (
|
2022-02-21 03:16:15 +00:00
|
|
|
[rid] int not null IDENTITY,
|
|
|
|
[uid] int not null,
|
|
|
|
[content] nvarchar (MAX) not null,
|
|
|
|
[parsed_content] nvarchar (MAX) not null,
|
|
|
|
[createdAt] datetime not null,
|
|
|
|
[createdBy] int not null,
|
|
|
|
[lastEdit] int DEFAULT 0 not null,
|
|
|
|
[lastEditBy] int DEFAULT 0 not null,
|
|
|
|
[ip] nvarchar (200) DEFAULT '' not null,
|
|
|
|
primary key([rid])
|
2017-10-14 07:39:22 +00:00
|
|
|
);
|