Displaying 3 results from an estimated 3 matches for "last_login_date".
2006 May 29
9
design recommendations for authenticating users with lots of different attributes..?
...of
information required to allow users to login:
def self.up
create_table :users do |t|
t.column :username, :string
t.column :password_salt, :string
t.column :password_hash, :string
t.column :created_at, :datetime
t.column :updated_at, :datetime
t.column :last_login_date, :datetime
end
The problem is that some users (such as sales reps), need many more
attributes than are provided by the User table, such as
primary_market, secondary_market, previous_employer, current_employer,
essay, referral_source, website, comments, etc.. So what I''m
struggling wit...
2018 Mar 28
1
Dovecot quota
...inyint(1) | YES | | 0 | |
| sendonly | tinyint(1) | YES | | 0 | |
| last_login | int(11) | YES | | NULL | |
| last_login_ip | varchar(16) | YES | | NULL | |
| last_login_date | datetime | YES | | NULL | |
| last_login_proto | varchar(16) | YES | | NULL | |
+------------------+------------------+------+-----+---------+----------------+
12 rows in set (0.00 sec)
mysql> describe quota;
+----------+------------...
2018 Mar 07
0
last login tracking
...igint(20) | NO | | 0 |
|
| active | tinyint(1) | NO | | 1 |
|
| allow_imap | tinyint(1) | NO | | 1 |
|
| last_login_ip | varchar(16) | YES | | NULL |
|
| last_login_date | datetime | YES | | NULL |
|
| last_login_proto | varchar(5) | YES | | NULL |
|
+------------------+----------------------+------+-----+---------+----------------+
12 rows in set (0.00 sec)
#cat last-login.conf
connect = host=/tmp/mysq...