Updated database.sql
This commit is contained in:
parent
45227a12a6
commit
0fb6150fae
17
database.sql
17
database.sql
|
@ -909,23 +909,6 @@ CREATE TABLE IF NOT EXISTS `sign` (
|
||||||
UNIQUE INDEX `iid` (`iid`)
|
UNIQUE INDEX `iid` (`iid`)
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci;
|
) DEFAULT COLLATE utf8mb4_general_ci;
|
||||||
|
|
||||||
--
|
|
||||||
-- TABLE spam
|
|
||||||
--
|
|
||||||
CREATE TABLE IF NOT EXISTS `spam` (
|
|
||||||
`id` int(11) NOT NULL auto_increment,
|
|
||||||
`uid` int(11) NOT NULL DEFAULT 0,
|
|
||||||
`spam` int(11) NOT NULL DEFAULT 0,
|
|
||||||
`ham` int(11) NOT NULL DEFAULT 0,
|
|
||||||
`term` varchar(255) NOT NULL DEFAULT '',
|
|
||||||
`date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
|
|
||||||
PRIMARY KEY(`id`),
|
|
||||||
INDEX `uid` (`uid`),
|
|
||||||
INDEX `spam` (`spam`),
|
|
||||||
INDEX `ham` (`ham`),
|
|
||||||
INDEX `term` (`term`(32))
|
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci;
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- TABLE term
|
-- TABLE term
|
||||||
--
|
--
|
||||||
|
|
Loading…
Reference in a new issue