summaryrefslogtreecommitdiffstats
path: root/UPGRADING
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2013-03-19 14:49:34 +0100
committerLukas Fleischer <archlinux@cryptocrack.de>2013-03-21 22:26:46 +0100
commit5660816ea079585c70583a9e470e22c4cf66c022 (patch)
tree298c188eeef5d53a2dcd266eab4607f11bb8c63d /UPGRADING
parentde39a712b040d4ce51dc4eb2f4e2ef74a7a9013c (diff)
downloadaurweb-5660816ea079585c70583a9e470e22c4cf66c022.tar.xz
Save last login IP address
Save the IP address used for the last login in the "Users" table. This makes it a bit easier to create IP ban lists for spammers without looking at web server logs. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'UPGRADING')
-rw-r--r--UPGRADING10
1 files changed, 10 insertions, 0 deletions
diff --git a/UPGRADING b/UPGRADING
index c39330b..9c05467 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -1,6 +1,16 @@
Upgrading
=========
+From 2.1.0 to 2.2.0
+-------------------
+
+1. Add new "Users" table login IP address column:
+
+----
+ALTER TABLE Users
+ ADD COLUMN LastLoginIPAddress INTEGER UNSIGNED NOT NULL DEFAULT 0;
+----
+
From 2.0.0 to 2.1.0
-------------------