diff --git a/install.sql b/install.sql index dc2c58f2..00c67162 100644 --- a/install.sql +++ b/install.sql @@ -203,6 +203,7 @@ CREATE TABLE IF NOT EXISTS `posts_b` ( `ip` varchar(45) NOT NULL, `sticky` int(1) NOT NULL, `locked` int(1) NOT NULL, + `sage` int(1) NOT NULL, `embed` text, UNIQUE KEY `id` (`id`), KEY `thread` (`thread`), diff --git a/templates/posts.sql b/templates/posts.sql index c8a4bdc6..e3a81ee1 100644 --- a/templates/posts.sql +++ b/templates/posts.sql @@ -22,9 +22,10 @@ CREATE TABLE IF NOT EXISTS `posts_{{ board }}` ( `ip` varchar(45) NOT NULL, `sticky` int(1) NOT NULL, `locked` int(1) NOT NULL, + `sage` int(1) NOT NULL, `embed` text, UNIQUE KEY `id` (`id`), KEY `thread` (`thread`), KEY `time` (`time`), FULLTEXT KEY `body` (`body`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; \ No newline at end of file +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;