IP address notes

This commit is contained in:
Savetheinternet 2011-04-05 17:36:00 +10:00
parent 2487a6fb7f
commit 10bd465ea3
4 changed files with 117 additions and 2 deletions

View file

@ -223,3 +223,23 @@ CREATE TABLE IF NOT EXISTS `noticeboard` (
--
-- Dumping data for table `noticeboard`
--
-- --------------------------------------------------------
--
-- Table structure for table `ip_notes`
--
CREATE TABLE IF NOT EXISTS `ip_notes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ip` varchar(45) NOT NULL,
`mod` int(11) DEFAULT NULL,
`time` int(11) NOT NULL,
`body` text NOT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `ip_notes`
--