Skip to content

Commit

Permalink
added column for storing last login timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
mebjas committed Jun 9, 2014
1 parent 50e015b commit c9365ef
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions SQL/OWASP.sql
Expand Up @@ -103,6 +103,7 @@ CREATE TABLE IF NOT EXISTS `USER` (
`USERID` varchar(32) NOT NULL,
`P_EMAIL` varchar(128) NOT NULL,
`ACCOUNT_CREATED` int(10) NOT NULL,
`LAST_LOGIN` int(10) NOT NULL,
`LOCKED` tinyint(1) NOT NULL DEFAULT '0',
`INACTIVE` tinyint(1) NOT NULL DEFAULT '1',
`HASH` varchar(128) NOT NULL,
Expand Down

0 comments on commit c9365ef

Please sign in to comment.