Generate these out too.
This commit is contained in:
parent
8900ebb4cd
commit
6c42df3091
|
@ -6,6 +6,7 @@ CREATE TABLE [topics] (
|
||||||
[createdAt] datetime not null,
|
[createdAt] datetime not null,
|
||||||
[lastReplyAt] datetime not null,
|
[lastReplyAt] datetime not null,
|
||||||
[lastReplyBy] int not null,
|
[lastReplyBy] int not null,
|
||||||
|
[lastReplyID] int DEFAULT 0 not null,
|
||||||
[createdBy] int not null,
|
[createdBy] int not null,
|
||||||
[is_closed] bit DEFAULT 0 not null,
|
[is_closed] bit DEFAULT 0 not null,
|
||||||
[sticky] bit DEFAULT 0 not null,
|
[sticky] bit DEFAULT 0 not null,
|
||||||
|
@ -13,6 +14,7 @@ CREATE TABLE [topics] (
|
||||||
[ipaddress] nvarchar (200) DEFAULT '0.0.0.0.0' not null,
|
[ipaddress] nvarchar (200) DEFAULT '0.0.0.0.0' not null,
|
||||||
[postCount] int DEFAULT 1 not null,
|
[postCount] int DEFAULT 1 not null,
|
||||||
[likeCount] int DEFAULT 0 not null,
|
[likeCount] int DEFAULT 0 not null,
|
||||||
|
[attachCount] int DEFAULT 0 not null,
|
||||||
[words] int DEFAULT 0 not null,
|
[words] int DEFAULT 0 not null,
|
||||||
[views] int DEFAULT 0 not null,
|
[views] int DEFAULT 0 not null,
|
||||||
[css_class] nvarchar (100) DEFAULT '' not null,
|
[css_class] nvarchar (100) DEFAULT '' not null,
|
||||||
|
|
|
@ -6,6 +6,7 @@ CREATE TABLE `topics` (
|
||||||
`createdAt` datetime not null,
|
`createdAt` datetime not null,
|
||||||
`lastReplyAt` datetime not null,
|
`lastReplyAt` datetime not null,
|
||||||
`lastReplyBy` int not null,
|
`lastReplyBy` int not null,
|
||||||
|
`lastReplyID` int DEFAULT 0 not null,
|
||||||
`createdBy` int not null,
|
`createdBy` int not null,
|
||||||
`is_closed` boolean DEFAULT 0 not null,
|
`is_closed` boolean DEFAULT 0 not null,
|
||||||
`sticky` boolean DEFAULT 0 not null,
|
`sticky` boolean DEFAULT 0 not null,
|
||||||
|
@ -13,6 +14,7 @@ CREATE TABLE `topics` (
|
||||||
`ipaddress` varchar(200) DEFAULT '0.0.0.0.0' not null,
|
`ipaddress` varchar(200) DEFAULT '0.0.0.0.0' not null,
|
||||||
`postCount` int DEFAULT 1 not null,
|
`postCount` int DEFAULT 1 not null,
|
||||||
`likeCount` int DEFAULT 0 not null,
|
`likeCount` int DEFAULT 0 not null,
|
||||||
|
`attachCount` int DEFAULT 0 not null,
|
||||||
`words` int DEFAULT 0 not null,
|
`words` int DEFAULT 0 not null,
|
||||||
`views` int DEFAULT 0 not null,
|
`views` int DEFAULT 0 not null,
|
||||||
`css_class` varchar(100) DEFAULT '' not null,
|
`css_class` varchar(100) DEFAULT '' not null,
|
||||||
|
|
|
@ -6,6 +6,7 @@ CREATE TABLE "topics" (
|
||||||
`createdAt` timestamp not null,
|
`createdAt` timestamp not null,
|
||||||
`lastReplyAt` timestamp not null,
|
`lastReplyAt` timestamp not null,
|
||||||
`lastReplyBy` int not null,
|
`lastReplyBy` int not null,
|
||||||
|
`lastReplyID` int DEFAULT 0 not null,
|
||||||
`createdBy` int not null,
|
`createdBy` int not null,
|
||||||
`is_closed` boolean DEFAULT 0 not null,
|
`is_closed` boolean DEFAULT 0 not null,
|
||||||
`sticky` boolean DEFAULT 0 not null,
|
`sticky` boolean DEFAULT 0 not null,
|
||||||
|
@ -13,6 +14,7 @@ CREATE TABLE "topics" (
|
||||||
`ipaddress` varchar (200) DEFAULT '0.0.0.0.0' not null,
|
`ipaddress` varchar (200) DEFAULT '0.0.0.0.0' not null,
|
||||||
`postCount` int DEFAULT 1 not null,
|
`postCount` int DEFAULT 1 not null,
|
||||||
`likeCount` int DEFAULT 0 not null,
|
`likeCount` int DEFAULT 0 not null,
|
||||||
|
`attachCount` int DEFAULT 0 not null,
|
||||||
`words` int DEFAULT 0 not null,
|
`words` int DEFAULT 0 not null,
|
||||||
`views` int DEFAULT 0 not null,
|
`views` int DEFAULT 0 not null,
|
||||||
`css_class` varchar (100) DEFAULT '' not null,
|
`css_class` varchar (100) DEFAULT '' not null,
|
||||||
|
|
Loading…
Reference in New Issue