add board field on ban table

This commit is contained in:
Savetheinternet
2011-07-27 13:02:49 +10:00
parent ada976e47e
commit f33848a3ac
2 changed files with 6 additions and 2 deletions

View File

@@ -23,7 +23,8 @@ CREATE TABLE IF NOT EXISTS `bans` (
`mod` int(11) NOT NULL COMMENT 'which mod made the ban',
`set` int(11) NOT NULL,
`expires` int(11) DEFAULT NULL,
`reason` text
`reason` text,
`board` smallint(6) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--