]> git.mxchange.org Git - friendica.git/blobdiff - update.php
use atom_time on atom entries
[friendica.git] / update.php
index 131014d4a4424864b81f85abc19463c685066cb1..541a12ef56fbbb879f7b99d4b292c75f0bd8ae90 100644 (file)
@@ -1,5 +1,7 @@
 <?php
 
+define( 'UPDATE_VERSION' , 1064 );
+
 /**
  *
  * update.php - automatic system update
  * Each function in this file is named update_nnnn() where nnnn is an increasing number 
  * which began counting at 1000.
  * 
- * At the top of the file "boot.php" is a define for BUILD_ID. Any time there is a change
+ * At the top of the file "boot.php" is a define for DB_UPDATE_VERSION. Any time there is a change
  * to the database schema or one which requires an upgrade path from the existing application,
- * the BUILD_ID is incremented.
+ * the DB_UPDATE_VERSION is incremented.
  *
- * The current BUILD_ID is stored in the config area of the database. If the application starts up
- * and BUILD_ID is greater than the last stored build number, we will process every update function 
- * in order from the currently stored value to the new BUILD_ID. This is expected to bring the system 
+ * The current DB_UPDATE_VERSION is stored in the config area of the database. If the application starts up
+ * and DB_UPDATE_VERSION is greater than the last stored build number, we will process every update function 
+ * in order from the currently stored value to the new DB_UPDATE_VERSION. This is expected to bring the system 
  * up to current without requiring re-installation or manual intervention.
  *
- * Once the upgrade functions have completed, the current BUILD_ID is stored as the current value.
- * The BUILD_ID will always be one greater than the last numbered script in this file. 
+ * Once the upgrade functions have completed, the current DB_UPDATE_VERSION is stored as the current value.
+ * The DB_UPDATE_VERSION will always be one greater than the last numbered script in this file. 
  *
  * If you change the database schema, the following are required:
  *    1. Update the file database.sql to match the new schema.
- *    2. Update this file by adding a new function at the end with the number of the current BUILD_ID.
+ *    2. Update this file by adding a new function at the end with the number of the current DB_UPDATE_VERSION.
  *       This function should modify the current database schema and perform any other steps necessary
  *       to ensure that upgrade is silent and free from requiring interaction.
- *    3. Increment the BUILD_ID in boot.php
+ *    3. Increment the DB_UPDATE_VERSION in boot.php *AND* the UPDATE_VERSION in this file to match it
  *    4. TEST the upgrade prior to checkin and filing a pull request.
  *
  */
@@ -326,7 +328,7 @@ function update_1033() {
                `k` CHAR( 255 ) NOT NULL PRIMARY KEY ,
                `v` TEXT NOT NULL,
                `updated` DATETIME NOT NULL
-               ) ENGINE = MYISAM DEFAULT CHARSET=utf8;");
+               ) ENGINE = MYISAM DEFAULT CHARSET=utf8 ");
 }
 
 
@@ -374,3 +376,148 @@ function update_1038() {
  q("ALTER TABLE `item` ADD `plink` CHAR( 255 ) NOT NULL AFTER `target` ");
 }
 
+function update_1039() {
+       q("ALTER TABLE `addon` ADD `timestamp` BIGINT NOT NULL DEFAULT '0'");
+}
+
+
+function update_1040() {
+
+       q("CREATE TABLE IF NOT EXISTS `fcontact` (
+       `id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
+       `url` CHAR( 255 ) NOT NULL ,
+       `name` CHAR( 255 ) NOT NULL ,
+       `photo` CHAR( 255 ) NOT NULL
+       ) ENGINE = MYISAM DEFAULT CHARSET=utf8 ");
+
+       q("CREATE TABLE IF NOT EXISTS `ffinder` (
+       `id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
+       `uid` INT UNSIGNED NOT NULL ,
+       `cid` INT UNSIGNED NOT NULL ,
+       `fid` INT UNSIGNED NOT NULL
+       ) ENGINE = MYISAM DEFAULT CHARSET=utf8 ");
+
+}
+
+function update_1041() {
+       q("ALTER TABLE `profile` CHANGE `keywords` `prv_keywords` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL ");
+       q("ALTER TABLE `profile` ADD `pub_keywords` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL AFTER `religion` ");
+}
+
+function update_1042() {
+       q("ALTER TABLE `user` ADD `expire` INT UNSIGNED NOT NULL DEFAULT '0' AFTER `maxreq` ");
+}
+
+
+function update_1043() {
+       q("ALTER TABLE `user` ADD `blockwall` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `blocked` ");
+}
+
+function update_1044() {
+       q("ALTER TABLE `profile` ADD FULLTEXT ( `pub_keywords` ) ");
+       q("ALTER TABLE `profile` ADD FULLTEXT ( `prv_keywords` ) ");
+}
+
+function update_1045() {
+       q("ALTER TABLE `user` ADD `language` CHAR( 16 ) NOT NULL DEFAULT 'en' AFTER `timezone` ");
+}
+
+function update_1046() {
+       q("ALTER TABLE `item` ADD `attach` MEDIUMTEXT NOT NULL AFTER `tag` ");
+}
+
+function update_1047() {
+       q("ALTER TABLE `contact` ADD `writable` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `readonly` ");
+}
+
+function update_1048() {
+       q("UPDATE `contact` SET `writable` = 1 WHERE `network` = 'stat' AND `notify` != '' ");
+}
+
+function update_1049() {
+       q("CREATE TABLE `mailacct` (
+       `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
+       `uid` INT NOT NULL,
+       `server` CHAR( 255 ) NOT NULL ,
+       `user` CHAR( 255 ) NOT NULL ,
+       `pass` CHAR( 255 ) NOT NULL ,
+       `reply_to` CHAR( 255 ) NOT NULL ,
+       `last_check` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00'
+       ) ENGINE = MYISAM ");
+}
+
+function update_1050() {
+       q("CREATE TABLE `attach` (
+       `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
+       `uid` INT NOT NULL ,
+       `filetype` CHAR( 64 ) NOT NULL ,
+       `filesize` INT NOT NULL ,
+       `data` LONGBLOB NOT NULL ,
+       `created` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `edited` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `allow_cid` MEDIUMTEXT NOT NULL ,
+       `allow_gid` MEDIUMTEXT NOT NULL ,
+       `deny_cid` MEDIUMTEXT NOT NULL ,
+       `deny_gid` MEDIUMTEXT NOT NULL
+       ) ENGINE = MYISAM ");
+
+}
+
+function update_1051() {
+       q("ALTER TABLE `mailacct` ADD `port` INT NOT NULL AFTER `server` ,
+               ADD `ssltype` CHAR( 16 ) NOT NULL AFTER `port` ,
+               ADD `mailbox` CHAR( 255 ) NOT NULL AFTER `ssltype` ");
+
+       q("ALTER TABLE `contact` ADD `addr` CHAR( 255 ) NOT NULL AFTER `url` ");
+}
+
+function update_1052() {
+       q("ALTER TABLE `mailacct` CHANGE `pass` `pass` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL");
+       q("ALTER TABLE `mailacct` ADD `pubmail` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `reply_to` ");
+       q("ALTER TABLE `item` ADD `pubmail` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `private` ");
+}
+
+
+function update_1053() {
+       q("ALTER TABLE `item` ADD `extid` CHAR( 255 ) NOT NULL AFTER `parent-uri` , ADD INDEX ( `extid` ) ");
+}
+
+function update_1054() {
+       q("ALTER TABLE `register` ADD `language` CHAR( 16 ) NOT NULL AFTER `password` ");
+}
+
+function update_1055() {
+       q("ALTER TABLE `profile` ADD `hidewall` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `hide-friends` ");
+}
+
+function update_1056() {
+       q("ALTER TABLE `attach` ADD `hash` CHAR( 64 ) NOT NULL AFTER `uid` ");
+}
+
+function update_1057() {
+       q("ALTER TABLE `attach` ADD `filename` CHAR( 255 ) NOT NULL AFTER `hash` ");
+}
+
+function update_1058() {
+       q("ALTER TABLE `item` ADD `event-id` INT NOT NULL AFTER `resource-id` ");
+}
+
+function update_1059() {
+       q("ALTER TABLE `queue` ADD `network` CHAR( 32 ) NOT NULL AFTER `cid` ");
+}
+
+function update_1060() {
+       q("ALTER TABLE `event` ADD `uri` CHAR( 255 ) NOT NULL AFTER `cid` ");
+}
+
+function update_1061() {
+       q("ALTER TABLE `event` ADD `nofinish` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `type` ");
+}
+
+function update_1062() {
+       q("ALTER TABLE `user` ADD `prvnets` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `page-flags` ");
+}
+function update_1063() {
+       q("ALTER TABLE `addon` ADD `plugin_admin` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `timestamp` ");
+}
+