diff options
author | friendica <info@friendica.com> | 2012-04-06 03:25:01 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-06 03:25:01 -0700 |
commit | 0731c177eb4a58c6dd7bb50ee3915563c33531bc (patch) | |
tree | 78fd50805c9c8cc702ec4d3fc40cc211248e01b3 /update.php | |
parent | 91906b1b7484b0a5d802bd933e738876ff6ad553 (diff) | |
download | volse-hubzilla-0731c177eb4a58c6dd7bb50ee3915563c33531bc.tar.gz volse-hubzilla-0731c177eb4a58c6dd7bb50ee3915563c33531bc.tar.bz2 volse-hubzilla-0731c177eb4a58c6dd7bb50ee3915563c33531bc.zip |
fix bad sql update
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/update.php b/update.php index ae35d2d50..0c8486c31 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1135 ); +define( 'UPDATE_VERSION' , 1136 ); /** * @@ -1143,16 +1143,21 @@ q("ALTER TABLE `mail` ADD `unknown` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `rep } function update_1134() { + // faulty update merged forward + // had a hardwired tablename of 'friendica' which isn't the right name on most systems +} + +function update_1135() { //there can't be indexes with more than 1000 bytes in mysql, //so change charset to be smaller q("ALTER TABLE `config` CHANGE `cat` `cat` CHAR( 255 ) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL , CHANGE `k` `k` CHAR( 255 ) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL"); //and add the index - q("ALTER TABLE `friendica`.`config` ADD UNIQUE `access` ( `cat` , `k` ) "); + q("ALTER TABLE `config` ADD UNIQUE `access` ( `cat` , `k` ) "); //same thing for pconfig q("ALTER TABLE `pconfig` CHANGE `cat` `cat` CHAR( 255 ) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL , CHANGE `k` `k` CHAR( 255 ) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL"); - q("ALTER TABLE `friendica`.`pconfig` ADD UNIQUE `access` ( `uid` , `cat` , `k` )"); -} + q("ALTER TABLE `pconfig` ADD UNIQUE `access` ( `uid` , `cat` , `k` )"); +}
\ No newline at end of file |