Ooops, also update the DB
This commit is contained in:
parent
57bf80fff0
commit
569e93d6e1
@ -1029,3 +1029,11 @@ CREATE TABLE IF NOT EXISTS `xtag` (
|
||||
KEY `xtag_hash` (`xtag_hash`),
|
||||
KEY `xtag_flags` (`xtag_flags`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE if not exists `sys_perms` (
|
||||
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
|
||||
`cat` CHAR( 255 ) NOT NULL ,
|
||||
`k` CHAR( 255 ) NOT NULL ,
|
||||
`v` MEDIUMTEXT NOT NULL,
|
||||
`public_perm` TINYINT( 1 ) UNSIGNED NOT NULL
|
||||
) ENGINE = MYISAM DEFAULT CHARSET = utf8");
|
||||
|
Reference in New Issue
Block a user