diff options
author | friendica <info@friendica.com> | 2013-01-01 23:56:27 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-01 23:56:27 -0800 |
commit | 50d1cb2e3afe265004c7c08c8a63876c4b541469 (patch) | |
tree | 917fa3317eac2ec6f2d23462775e83fab014ce9d /install/update.php | |
parent | 4d7fe15d3b31f7c5279b08c73e23cb21f906cd15 (diff) | |
download | volse-hubzilla-50d1cb2e3afe265004c7c08c8a63876c4b541469.tar.gz volse-hubzilla-50d1cb2e3afe265004c7c08c8a63876c4b541469.tar.bz2 volse-hubzilla-50d1cb2e3afe265004c7c08c8a63876c4b541469.zip |
start building social graph
Diffstat (limited to 'install/update.php')
-rw-r--r-- | install/update.php | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php index 614887709..075b2f8a6 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1013 ); +define( 'UPDATE_VERSION' , 1014 ); /** * @@ -197,3 +197,17 @@ ADD INDEX ( `xchan_connurl` )"); return UPDATE_SUCCESS; return UPDATE_FAILED; } + +function update_r1013() { + $r = q"CREATE TABLE if not exists `xlink` ( +`xlink_id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY , +`xlink_xchan` CHAR( 255 ) NOT NULL DEFAULT '', +`xlink_link` CHAR( 255 ) NOT NULL DEFAULT '', +`xlink_updated` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' +) ENGINE = MYISAM "); + + $r2 = q("alter table xlink add index ( xlink_xchan ), add index ( xlink link ), add index ( xlink_updated ) "); + if($r && $r2) + return UPDATE_SUCCESS; + return UPDATE_FAILED; +} |