forked from leftypol/leftypol
Moderator noticeboard
This commit is contained in:
parent
44aeb4d97d
commit
e978bfd2b0
3 changed files with 109 additions and 0 deletions
19
install.sql
19
install.sql
|
@ -204,3 +204,22 @@ CREATE TABLE IF NOT EXISTS `robot` (
|
|||
-- Dumping data for table `robot`
|
||||
--
|
||||
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `noticeboard`
|
||||
--
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `noticeboard` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`mod` int(11) NOT NULL,
|
||||
`time` int(11) NOT NULL,
|
||||
`subject` text NOT NULL,
|
||||
`body` text NOT NULL,
|
||||
UNIQUE KEY `id` (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ;
|
||||
|
||||
--
|
||||
-- Dumping data for table `noticeboard`
|
||||
--
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue