1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-02-20 04:31:23 +01:00

Added "modlogs" table

This commit is contained in:
Savetheinternet 2011-02-11 23:03:23 +11:00
parent c34ea2e3af
commit 5048f01098

View File

@ -125,4 +125,11 @@ CREATE TABLE `robot` (
CREATE TABLE `mutes` (
`ip` VARCHAR( 15 ) NOT NULL ,
`time` INT NOT NULL
) ENGINE = MYISAM ;
) ENGINE = MYISAM ;
CREATE TABLE `modlogs` (
`mod` INT NOT NULL ,
`ip` VARCHAR( 15 ) NOT NULL ,
`time` INT NOT NULL ,
`text` TEXT NOT NULL
) ENGINE = INNODB;