aboutsummaryrefslogtreecommitdiffstats
path: root/update.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2010-12-22 14:16:22 -0800
committerFriendika <info@friendika.com>2010-12-22 14:16:22 -0800
commit6808d53d0f8044a395a4e0099689d282285a0ac0 (patch)
tree90d362dadbff52ab596bca6f085c9910e10ca7ce /update.php
parenteb6cefaea334fe02e3a77643eb1fc31eaaab5a6e (diff)
downloadvolse-hubzilla-6808d53d0f8044a395a4e0099689d282285a0ac0.tar.gz
volse-hubzilla-6808d53d0f8044a395a4e0099689d282285a0ac0.tar.bz2
volse-hubzilla-6808d53d0f8044a395a4e0099689d282285a0ac0.zip
plugin/addon API landing - still things left to do before it's useful
Diffstat (limited to 'update.php')
-rw-r--r--update.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/update.php b/update.php
index 81c5f0aea..5807f1a34 100644
--- a/update.php
+++ b/update.php
@@ -261,3 +261,12 @@ function update_1026() {
}
+function update_1027() {
+ q("CREATE TABLE IF NOT EXISTS `addon` (
+ `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
+ `name` CHAR( 255 ) NOT NULL ,
+ `version` CHAR( 255 ) NOT NULL ,
+ `installed` TINYINT( 1 ) NOT NULL DEFAULT '0'
+ ) ENGINE = MYISAM DEFAULT CHARSET=utf8 ");
+}
+