diff options
author | friendica <info@friendica.com> | 2012-01-26 16:52:12 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-01-26 16:52:12 -0800 |
commit | 167ab537b51cf76016e89c705aca812968cb6b82 (patch) | |
tree | 38da81c80f3b3288fb2a875781254ee8d4026a0c /update.php | |
parent | 10f768630ba5f77e9b7729df437690a767387319 (diff) | |
download | volse-hubzilla-167ab537b51cf76016e89c705aca812968cb6b82.tar.gz volse-hubzilla-167ab537b51cf76016e89c705aca812968cb6b82.tar.bz2 volse-hubzilla-167ab537b51cf76016e89c705aca812968cb6b82.zip |
backend for delegating forums
Diffstat (limited to 'update.php')
-rwxr-xr-x | update.php | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/update.php b/update.php index 166602fb9..e1900e807 100755 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1116 ); +define( 'UPDATE_VERSION' , 1117 ); /** * @@ -997,3 +997,15 @@ function update_1115() { ADD INDEX (`moderated`) "); } + +function update_1116() { +q("create table if not exists `manage` { +`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , +`uid` INT NOT NULL , +`mid` INT NOT NULL, +INDEX ( `uid` ), +INDEX ( `mid` ) +) ENGINE = MYISAM "); + +} + |