aboutsummaryrefslogtreecommitdiffstats
path: root/install/update.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-05-28 19:06:31 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-05-28 19:06:31 -0700
commit8fe3daab21f9aba00f7def3553247b0cbcf5f94a (patch)
tree3e8b22ef3b197e4dbdba3e86f7427452d1cd6b73 /install/update.php
parentb381ec57346a6d7724b2317c120ce2e6e70edc37 (diff)
parentdf5223fe9813a2f6bee053c1c3c6acbdbaf6d42f (diff)
downloadvolse-hubzilla-8fe3daab21f9aba00f7def3553247b0cbcf5f94a.tar.gz
volse-hubzilla-8fe3daab21f9aba00f7def3553247b0cbcf5f94a.tar.bz2
volse-hubzilla-8fe3daab21f9aba00f7def3553247b0cbcf5f94a.zip
Merge branch 'master' of https://github.com/redmatrix/redmatrix
Conflicts: install/schema_mysql.sql mod/impel.php view/pt-br/messages.po view/pt-br/strings.php
Diffstat (limited to 'install/update.php')
-rw-r--r--install/update.php24
1 files changed, 23 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php
index 13dd004c9..13a45d301 100644
--- a/install/update.php
+++ b/install/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1141 );
+define( 'UPDATE_VERSION' , 1142 );
/**
*
@@ -1624,3 +1624,25 @@ function update_r1140() {
}
+function update_r1141() {
+ if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) {
+ $r1 = q("ALTER TABLE menu ADD menu_created timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', ADD menu_edited timestamp NOT NULL DEFAULT '0001-01-01 00:00:00'");
+ $r2 = q("create index menu_created on menu ( menu_created ) ");
+ $r3 = q("create index menu_edited on menu ( menu_edited ) ");
+ $r = $r1 && $r2;
+ }
+ else
+ $r = q("ALTER TABLE menu ADD menu_created DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', ADD menu_edited DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', ADD INDEX ( menu_created ), ADD INDEX ( menu_edited ) ");
+
+ $t = datetime_convert();
+ q("update menu set menu_created = '%s', menu_edited = '%s' where true",
+ dbesc($t),
+ dbesc($t)
+ );
+
+
+ if($r)
+ return UPDATE_SUCCESS;
+ return UPDATE_FAILED;
+
+} \ No newline at end of file