Displaying 3 results from an estimated 3 matches for "last_login_d".
Did you mean:
last_login
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...
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
...before = file:/home/vmail/sieve/global/learn-spam.sieve
imapsieve_mailbox1_causes = COPY
imapsieve_mailbox1_name = Spam
imapsieve_mailbox2_before = file:/home/vmail/sieve/global/learn-ham.sieve
imapsieve_mailbox2_causes = COPY
imapsieve_mailbox2_from = Spam
imapsieve_mailbox2_name = *
last_login_dict = proxy::lastlogin
last_login_key = last-login/%u
mail_log_events = delete undelete expunge copy mailbox_delete mailbox_rename
mail_log_fields = uid box msgid size
quota = count:User quota
quota_clone_dict = proxy::sqlquota
quota_exceeded_message = Storage quota for this account has...