mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
update 1257 ud_guid > ud_host
This commit is contained in:
33
Zotlabs/Update/_1257.php
Normal file
33
Zotlabs/Update/_1257.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace Zotlabs\Update;
|
||||
|
||||
class _1257 {
|
||||
|
||||
function run() {
|
||||
|
||||
dbq("START TRANSACTION");
|
||||
|
||||
$r1 = dbq("TRUNCATE TABLE updates");
|
||||
|
||||
if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) {
|
||||
$r2 = dbq("ALTER TABLE updates add ud_host text NOT NULL DEFAULT ''");
|
||||
}
|
||||
|
||||
if(ACTIVE_DBTYPE == DBTYPE_MYSQL) {
|
||||
$r2 = dbq("ALTER TABLE updates add ud_host varchar(191) NOT NULL DEFAULT ''");
|
||||
}
|
||||
|
||||
$r3 = dbq("ALTER TABLE updates DROP COLUMN ud_guid");
|
||||
|
||||
if($r1 && $r2 && $r3) {
|
||||
dbq("COMMIT");
|
||||
return UPDATE_SUCCESS;
|
||||
}
|
||||
|
||||
q("ROLLBACK");
|
||||
return UPDATE_FAILED;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user