mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-24 07:30:10 +01:00
update SQL files for v0.9.4-dev-2
This commit is contained in:
parent
94cb6bf8ab
commit
f600ed5b3b
@ -203,6 +203,7 @@ CREATE TABLE IF NOT EXISTS `posts_b` (
|
|||||||
`ip` varchar(45) NOT NULL,
|
`ip` varchar(45) NOT NULL,
|
||||||
`sticky` int(1) NOT NULL,
|
`sticky` int(1) NOT NULL,
|
||||||
`locked` int(1) NOT NULL,
|
`locked` int(1) NOT NULL,
|
||||||
|
`sage` int(1) NOT NULL,
|
||||||
`embed` text,
|
`embed` text,
|
||||||
UNIQUE KEY `id` (`id`),
|
UNIQUE KEY `id` (`id`),
|
||||||
KEY `thread` (`thread`),
|
KEY `thread` (`thread`),
|
||||||
|
@ -22,9 +22,10 @@ CREATE TABLE IF NOT EXISTS `posts_{{ board }}` (
|
|||||||
`ip` varchar(45) NOT NULL,
|
`ip` varchar(45) NOT NULL,
|
||||||
`sticky` int(1) NOT NULL,
|
`sticky` int(1) NOT NULL,
|
||||||
`locked` int(1) NOT NULL,
|
`locked` int(1) NOT NULL,
|
||||||
|
`sage` int(1) NOT NULL,
|
||||||
`embed` text,
|
`embed` text,
|
||||||
UNIQUE KEY `id` (`id`),
|
UNIQUE KEY `id` (`id`),
|
||||||
KEY `thread` (`thread`),
|
KEY `thread` (`thread`),
|
||||||
KEY `time` (`time`),
|
KEY `time` (`time`),
|
||||||
FULLTEXT KEY `body` (`body`)
|
FULLTEXT KEY `body` (`body`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
||||||
|
Loading…
Reference in New Issue
Block a user