mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Add LastLogin column to Users table
Signed-off-by: Dan McGee <dan@archlinux.org> Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
e6ecdcc835
commit
a21739aae5
3 changed files with 12 additions and 1 deletions
|
@ -1,6 +1,13 @@
|
|||
Upgrading
|
||||
=========
|
||||
|
||||
From 1.9.0 to 1.9.X
|
||||
-------------------
|
||||
|
||||
1. Add new "Users" table login date column:
|
||||
|
||||
ALTER TABLE Users ADD COLUMN LastLogin BIGINT NOT NULL DEFAULT 0;
|
||||
|
||||
From 1.8.2 to 1.9.0
|
||||
-------------------
|
||||
|
||||
|
|
|
@ -32,6 +32,7 @@ CREATE TABLE Users (
|
|||
LangPreference VARCHAR(5) NOT NULL DEFAULT 'en',
|
||||
IRCNick VARCHAR(32) NOT NULL DEFAULT '',
|
||||
LastVoted BIGINT UNSIGNED NOT NULL DEFAULT 0,
|
||||
LastLogin BIGINT UNSIGNED NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (ID),
|
||||
UNIQUE (Username),
|
||||
UNIQUE (Email),
|
||||
|
|
|
@ -637,8 +637,11 @@ function try_login() {
|
|||
}
|
||||
|
||||
if ($logged_in) {
|
||||
# set our SID cookie
|
||||
$q = "UPDATE Users SET LastLogin = UNIX_TIMESTAMP() ";
|
||||
$q.= "WHERE ID = '$userID'";
|
||||
db_query($q, $dbh);
|
||||
|
||||
# set our SID cookie
|
||||
if (isset($_POST['remember_me']) &&
|
||||
$_POST['remember_me'] == "on") {
|
||||
# Set cookies for 30 days.
|
||||
|
|
Loading…
Add table
Reference in a new issue