Added needed "board" column to modlogs (see commit comment for required SQL query)

This commit is contained in:
Savetheinternet 2011-03-28 17:24:23 +11:00
parent c77e78cb9c
commit 959541d505
3 changed files with 38 additions and 5 deletions

View file

@ -105,6 +105,7 @@ INSERT INTO `boards` (`id`, `uri`, `title`, `subtitle`) VALUES
CREATE TABLE IF NOT EXISTS `modlogs` (
`mod` int(11) NOT NULL,
`ip` varchar(45) NOT NULL,
`board` int(11) NOT NULL,
`time` int(11) NOT NULL,
`text` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;