landsandboat/sql/ip_exceptions.sql
Aerec 02344779e7 Add IP Limit Exceptions
Co-Authored-By: Damarus <leblanc.jlj@gmail.com>
Exception Reworks

Reworking how exceptions work based on feedback
Fix Migration


Final Fixed + Tested
2022-06-15 15:06:46 -04:00

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;