summaryrefslogtreecommitdiffstats
path: root/src/main/webapp/WEB-INF/sql/upgrade016_017_postgres.sql
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/webapp/WEB-INF/sql/upgrade016_017_postgres.sql')
-rw-r--r--src/main/webapp/WEB-INF/sql/upgrade016_017_postgres.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/webapp/WEB-INF/sql/upgrade016_017_postgres.sql b/src/main/webapp/WEB-INF/sql/upgrade016_017_postgres.sql
index b3d5f70f2b..66f5a7ec85 100644
--- a/src/main/webapp/WEB-INF/sql/upgrade016_017_postgres.sql
+++ b/src/main/webapp/WEB-INF/sql/upgrade016_017_postgres.sql
@@ -21,12 +21,13 @@ BEGIN
END;
$$ LANGUAGE plpgsql;
+ALTER TABLE system_config DROP max_session_age;
+
BEGIN;
SELECT check_schema_version(16);
ALTER TABLE system_config DROP xsrf_private_key;
-ALTER TABLE system_config DROP max_session_age;
ALTER TABLE system_config RENAME account_private_key TO register_email_private_key;
ALTER TABLE changes ADD change_key VARCHAR(60);