aboutsummaryrefslogtreecommitdiffstats
path: root/update.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-07-05 17:59:56 -0700
committerfriendica <info@friendica.com>2012-07-05 17:59:56 -0700
commitd7920c4c25e99e61cca10cd1c1ae73c5c3cf0cb5 (patch)
treea14580efdd1a1d7a664eb97da3b2695727eb767f /update.php
parent8af78079cbabe530554950ac241b24bbdcaf2cb7 (diff)
downloadvolse-hubzilla-d7920c4c25e99e61cca10cd1c1ae73c5c3cf0cb5.tar.gz
volse-hubzilla-d7920c4c25e99e61cca10cd1c1ae73c5c3cf0cb5.tar.bz2
volse-hubzilla-d7920c4c25e99e61cca10cd1c1ae73c5c3cf0cb5.zip
term (tag, mention, category, file, etc.) table
Diffstat (limited to 'update.php')
-rw-r--r--update.php20
1 files changed, 19 insertions, 1 deletions
diff --git a/update.php b/update.php
index 28fe469f1..d752eaa6d 100644
--- a/update.php
+++ b/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1152 );
+define( 'UPDATE_VERSION' , 1153 );
/**
*
@@ -1319,3 +1319,21 @@ function update_1151() {
return UPDATE_SUCCESS;
}
+function update_1152() {
+ $r = q("CREATE TABLE IF NOT EXISTS `term` (
+ `tid` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
+ `oid` INT UNSIGNED NOT NULL ,
+ `otype` TINYINT( 3 ) UNSIGNED NOT NULL ,
+ `type` TINYINT( 3 ) UNSIGNED NOT NULL ,
+ `term` CHAR( 255 ) NOT NULL ,
+ `url` CHAR( 255 ) NOT NULL,
+ KEY `oid` ( `oid` ),
+ KEY `otype` ( `otype` ),
+ KEY `type` ( `type` ),
+ KEY `term` ( `term` )
+ ) ENGINE = MYISAM DEFAULT CHARSET=utf8 ");
+ if (!$r)
+ return UPDATE_FAILED;
+ return UPDATE_SUCCESS;
+}
+