aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Update
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs/Update')
-rw-r--r--Zotlabs/Update/_1260.php10
-rw-r--r--Zotlabs/Update/_1261.php4
2 files changed, 10 insertions, 4 deletions
diff --git a/Zotlabs/Update/_1260.php b/Zotlabs/Update/_1260.php
index eac2bae8b..7f91418f6 100644
--- a/Zotlabs/Update/_1260.php
+++ b/Zotlabs/Update/_1260.php
@@ -18,8 +18,14 @@ class _1260 {
dbq("START TRANSACTION");
- $r1 = dbq("ALTER TABLE channel ADD channel_epubkey text NOT NULL DEFAULT ''");
- $r2 = dbq("ALTER TABLE channel ADD channel_eprvkey text NOT NULL DEFAULT ''");
+ if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) {
+ $r1 = dbq("ALTER TABLE channel ADD channel_epubkey text NOT NULL DEFAULT ''");
+ $r2 = dbq("ALTER TABLE channel ADD channel_eprvkey text NOT NULL DEFAULT ''");
+ }
+ else {
+ $r1 = dbq("ALTER TABLE channel ADD channel_epubkey text NOT NULL");
+ $r2 = dbq("ALTER TABLE channel ADD channel_eprvkey text NOT NULL");
+ }
$channels = dbq("select channel_id from channel where true");
if ($channels) {
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'");
}