From d225366f31aae250981f9f5bf8e43e633c631c73 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Wed, 28 Aug 2013 16:37:56 +0200 Subject: Add a registration time stamp to the "Users" table This allows for easily detecting old accounts that registered and never used the confirmation e-mail to set an initial password. Signed-off-by: Lukas Fleischer --- support/schema/aur-schema.sql | 1 + 1 file changed, 1 insertion(+) (limited to 'support/schema') diff --git a/support/schema/aur-schema.sql b/support/schema/aur-schema.sql index 1245919a..25e828ea 100644 --- a/support/schema/aur-schema.sql +++ b/support/schema/aur-schema.sql @@ -36,6 +36,7 @@ CREATE TABLE Users ( LastLogin BIGINT UNSIGNED NOT NULL DEFAULT 0, LastLoginIPAddress INTEGER UNSIGNED NOT NULL DEFAULT 0, InactivityTS BIGINT UNSIGNED NOT NULL DEFAULT 0, + RegistrationTS TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (ID), UNIQUE (Username), UNIQUE (Email), -- cgit v1.2.3-24-g4f1b