forked from leftypol/leftypol
IP address notes
This commit is contained in:
parent
2487a6fb7f
commit
10bd465ea3
4 changed files with 117 additions and 2 deletions
20
install.sql
20
install.sql
|
@ -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`
|
||||
--
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue