Browse Source

Added reports table

pull/40/head
Savetheinternet 13 years ago
parent
commit
ad3af856b3
  1. 21
      install.sql

21
install.sql

@ -15,6 +15,27 @@ SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
-- --------------------------------------------------------
--
-- Table structure for table `reports`
--
CREATE TABLE IF NOT EXISTS `reports` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`time` int(11) NOT NULL,
`ip` varchar(45) NOT NULL,
`board` smallint(6) NOT NULL,
`post` int(11) NOT NULL,
`reason` text NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `reports`
--
-- --------------------------------------------------------
--
-- Table structure for table `bans`
--

Loading…
Cancel
Save