gosora/schema/mssql/query_users_replies.sql

12 lines
388 B
MySQL
Raw Permalink Normal View History

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])
);