diff options
author | Friendika <info@friendika.com> | 2011-08-07 17:29:26 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-08-07 17:29:26 -0700 |
commit | 8812b7f4caa99d01ae0e082c0b29a2ee24aed67d (patch) | |
tree | 0a5988272c513e7bcc789e7864f145f26a3bbfb0 /update.php | |
parent | 1eec10329a4764f132b159e7b1bbf37added6c8a (diff) | |
download | volse-hubzilla-8812b7f4caa99d01ae0e082c0b29a2ee24aed67d.tar.gz volse-hubzilla-8812b7f4caa99d01ae0e082c0b29a2ee24aed67d.tar.bz2 volse-hubzilla-8812b7f4caa99d01ae0e082c0b29a2ee24aed67d.zip |
item guids
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/update.php b/update.php index 3c76a6bb4..256ab48e8 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1078 ); +define( 'UPDATE_VERSION' , 1079 ); /** * @@ -643,3 +643,6 @@ function update_1077() { q("ALTER TABLE `guid` CHANGE `guid` `guid` CHAR( 64 ) NOT NULL"); } +function update_1078() { + q("ALTER TABLE `item` ADD `guid` CHAR( 64 ) NOT NULL AFTER `id` , ADD INDEX ( `guid` ) "); +} |