aboutsummaryrefslogtreecommitdiffstats
path: root/database.sql
diff options
context:
space:
mode:
authorfabrixxm <fabrix.xm@gmail.com>2011-06-19 15:42:06 +0200
committerfabrixxm <fabrix.xm@gmail.com>2011-06-19 15:42:06 +0200
commitb650183cd4b82325dcaf74a42386882ef1802750 (patch)
treee0d8809cc9a3f6feef124c79de66bf20d8007306 /database.sql
parent10eb79a629278e11a0ed56193adef9895ff73638 (diff)
downloadvolse-hubzilla-b650183cd4b82325dcaf74a42386882ef1802750.tar.gz
volse-hubzilla-b650183cd4b82325dcaf74a42386882ef1802750.tar.bz2
volse-hubzilla-b650183cd4b82325dcaf74a42386882ef1802750.zip
Save in db if addon define "$addon_plugin_admin" function. Add "plugin_admin" column to "addon" table
Diffstat (limited to 'database.sql')
-rw-r--r--database.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/database.sql b/database.sql
index fa18c50dc..54e5f3983 100644
--- a/database.sql
+++ b/database.sql
@@ -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;