Co-Authored-By: Damarus <leblanc.jlj@gmail.com> Exception Reworks Reworking how exceptions work based on feedback Fix Migration Final Fixed + Tested
8 lines
304 B
SQL
8 lines
304 B
SQL
DROP TABLE IF EXISTS `ip_exceptions`;
|
|
CREATE TABLE IF NOT EXISTS `ip_exceptions` (
|
|
`accid` int(10) unsigned NOT NULL DEFAULT '0',
|
|
`exception` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
`comment` varchar(512) DEFAULT NULL,
|
|
PRIMARY KEY (`accid`)
|
|
)
|
|
ENGINE=InnoDB DEFAULT CHARSET=utf8;
|