]> git.mxchange.org Git - friendica.git/commitdiff
Added notify-threads to update.php
authorAbinoam P. Marques Jr <abinoam@gmail.com>
Sat, 25 Feb 2012 21:06:06 +0000 (13:06 -0800)
committerAbinoam P. Marques Jr <abinoam@gmail.com>
Sun, 26 Feb 2012 00:59:42 +0000 (16:59 -0800)
update.php

index 0096754d20afda75b19230946c5ee64e24788f9f..18dc90cce0b40218eee7f804197ab15234e53cc4 100755 (executable)
@@ -1,6 +1,6 @@
 <?php
 
-define( 'UPDATE_VERSION' , 1125 );
+define( 'UPDATE_VERSION' , 1126 );
 
 /**
  *
@@ -1076,4 +1076,17 @@ set_config('system','allowed_themes','dispy,quattro,testbubble,vier,darkbubble,d
 
 function update_1124() {
 q("alter table item add index (`author-name`) ");
-}
\ No newline at end of file
+}
+
+function update_1125() {
+  q("CREATE TABLE IF NOT EXISTS `notify-threads` (
+  `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
+  `notify-id` INT NOT NULL,
+  `master-parent-item` INT( 10 ) unsigned NOT NULL DEFAULT '0',
+  `parent-item` INT( 10 ) unsigned NOT NULL DEFAULT '0',
+  `receiver-uid` INT NOT NULL,
+  INDEX ( `master-parent-item` ),
+  INDEX ( `receiver-uid` )
+  ) ENGINE = MyISAM DEFAULT CHARSET=utf8");
+}
+