27503f94cdbf0d7d8f6f643e9e2ab6b68e2d7ae3
chinhli
  Wed May 2 13:03:56 2012 -0700
finished gbMembers table expansion to include security tokens.
diff --git src/hg/hgLogin/gbMembers.as src/hg/hgLogin/gbMembers.as
index a1ae41d..21e1d3b 100644
--- src/hg/hgLogin/gbMembers.as
+++ src/hg/hgLogin/gbMembers.as
@@ -1,17 +1,17 @@
 table gbMembers
 "UCSC Genome Browser members"
     (
     uint idx;          "auto-increment unique ID"
     string userName;  "Name used to login"
     string realName;  "Full name"
     string password;  "Encrypted password"
     string email;     "Email address"
-    string lastTouched;   "Last date the user log in/log out/change password"
+    string lastUse;   "Last date the user log in/log out/change password"
     string newPassword; "Password generated for the mail-a-new-password feature"
-    string newPassTime; "Expiration date of the new password generated"
-    string emailAuthenticated; "Date the account activated via email"
+    string newPasswordExpire; "Expiration date of the new password generated"
+    string dateActivated; "Date the account activated via email"
     string emailToken; "Security token used in the email to the user"
     string emailTokenExpires; "Expiration date of the emailToken"
     char [1] passwordChangeRequired; "Password change required?"
-    char[1] accountAactivated; "Account activated? Y or N"
+    char[1] accountActivated; "Account activated? Y or N"
     )