Save in db if addon define "$addon_plugin_admin" function. Add "plugin_admin" column to "addon" table

This commit is contained in:
fabrixxm
2011-06-19 15:42:06 +02:00
parent 10eb79a629
commit b650183cd4
3 changed files with 13 additions and 5 deletions

View File

@@ -469,7 +469,8 @@ CREATE TABLE IF NOT EXISTS `addon` (
`name` CHAR( 255 ) NOT NULL ,
`version` CHAR( 255 ) NOT NULL ,
`installed` TINYINT( 1 ) NOT NULL DEFAULT '0' ,
`timestamp` BIGINT NOT NULL DEFAULT '0'
`timestamp` BIGINT NOT NULL DEFAULT '0' ,
`plugin_admin` TINYINT( 1 ) NOT NULL DEFAULT '0'
) ENGINE = MYISAM DEFAULT CHARSET=utf8;