add menu_created, menu_edited fields to DB

This commit is contained in:
redmatrix
2015-05-28 16:59:56 -07:00
parent 1a86e3321b
commit 0f09a4499b
6 changed files with 65 additions and 8 deletions

View File

@@ -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;
}