summaryrefslogtreecommitdiffstats
path: root/UPGRADING
diff options
context:
space:
mode:
Diffstat (limited to 'UPGRADING')
-rw-r--r--UPGRADING12
1 files changed, 12 insertions, 0 deletions
diff --git a/UPGRADING b/UPGRADING
index 6d9f3cf2..e0875d38 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -1,6 +1,18 @@
Upgrading
=========
+From 1.9.1 to 2.0.0
+-------------------
+
+1. Add new "Users" table login date column:
+
+----
+ALTER TABLE Users ADD COLUMN LastLogin BIGINT NOT NULL DEFAULT 0;
+ALTER TABLE Users ADD COLUMN PGPKey VARCHAR(40) NULL DEFAULT NULL;
+----
+
+2. Merge "web/lib/config.inc.php.proto" with "web/lib/config.inc.php".
+
From 1.9.0 to 1.9.1
-------------------