From 5660816ea079585c70583a9e470e22c4cf66c022 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Tue, 19 Mar 2013 14:49:34 +0100 Subject: 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 --- UPGRADING | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'UPGRADING') diff --git a/UPGRADING b/UPGRADING index c39330b2..9c054672 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 ------------------- -- cgit v1.2.3-24-g4f1b