aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Update/_1261.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-01-07 20:34:47 +0000
committerMario <mario@mariovavti.com>2024-01-07 20:34:47 +0000
commitca216ae819646191f13053b4211dd7c52a25e676 (patch)
treee9dd50b28e76eba37d8ebf8dd3e16887ff91cf21 /Zotlabs/Update/_1261.php
parent4713241444ca045c38c4d855a7e597be58c043df (diff)
downloadvolse-hubzilla-ca216ae819646191f13053b4211dd7c52a25e676.tar.gz
volse-hubzilla-ca216ae819646191f13053b4211dd7c52a25e676.tar.bz2
volse-hubzilla-ca216ae819646191f13053b4211dd7c52a25e676.zip
set default value for postgres only
Diffstat (limited to 'Zotlabs/Update/_1261.php')
-rw-r--r--Zotlabs/Update/_1261.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Update/_1261.php b/Zotlabs/Update/_1261.php
index f99c49ebd..43fd0b098 100644
--- a/Zotlabs/Update/_1261.php
+++ b/Zotlabs/Update/_1261.php
@@ -20,12 +20,12 @@ class _1261 {
dbq("START TRANSACTION");
- $r1 = dbq("ALTER TABLE xchan ADD xchan_epubkey text NOT NULL DEFAULT ''");
-
if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) {
+ $r1 = dbq("ALTER TABLE xchan ADD xchan_epubkey text NOT NULL DEFAULT ''");
$r2 = dbq("ALTER TABLE xchan ADD xchan_updated timestamp NOT NULL DEFAULT '0001-01-01 00:00:00'");
}
else {
+ $r1 = dbq("ALTER TABLE xchan ADD xchan_epubkey text NOT NULL");
$r2 = dbq("ALTER TABLE xchan ADD xchan_updated datetime NOT NULL DEFAULT '0001-01-01 00:00:00'");
}