diff options
author | friendica <info@friendica.com> | 2012-01-26 23:56:47 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-01-26 23:56:47 -0800 |
commit | 1bec80152359da93289bb2d3bcdf33b83dd036f9 (patch) | |
tree | f5eeb2abf56d12aac35a54ad478e571177b611ee /update.php | |
parent | 94b9e9ce6d872e72e9846809fedd4a4cee8d63e3 (diff) | |
download | volse-hubzilla-1bec80152359da93289bb2d3bcdf33b83dd036f9.tar.gz volse-hubzilla-1bec80152359da93289bb2d3bcdf33b83dd036f9.tar.bz2 volse-hubzilla-1bec80152359da93289bb2d3bcdf33b83dd036f9.zip |
typo in update - critical
Diffstat (limited to 'update.php')
-rwxr-xr-x | update.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/update.php b/update.php index e1900e807..d961f2932 100755 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1117 ); +define( 'UPDATE_VERSION' , 1118 ); /** * @@ -997,9 +997,12 @@ function update_1115() { ADD INDEX (`moderated`) "); } - function update_1116() { -q("create table if not exists `manage` { + //typo! corrected update was rolled forward +} + +function update_1117() { +q("create table if not exists `manage` ( `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , `uid` INT NOT NULL , `mid` INT NOT NULL, |