diff options
author | Friendika <info@friendika.com> | 2011-09-18 19:53:45 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-09-18 19:53:45 -0700 |
commit | 5b3f6459392ba6f417cfc5cb0d38094c009c6913 (patch) | |
tree | d98c801e79dc3542cf89769d7b943f1b8292a38b /database.sql | |
parent | 8bf6a29d4e05af5d461da3f01999785dc12ee7da (diff) | |
download | volse-hubzilla-5b3f6459392ba6f417cfc5cb0d38094c009c6913.tar.gz volse-hubzilla-5b3f6459392ba6f417cfc5cb0d38094c009c6913.tar.bz2 volse-hubzilla-5b3f6459392ba6f417cfc5cb0d38094c009c6913.zip |
account expiration structures
Diffstat (limited to 'database.sql')
-rw-r--r-- | database.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/database.sql b/database.sql index 444b05faa..ba52d9f35 100644 --- a/database.sql +++ b/database.sql @@ -413,6 +413,9 @@ CREATE TABLE IF NOT EXISTS `user` ( `pwdreset` char(255) NOT NULL, `maxreq` int(11) NOT NULL DEFAULT '10', `expire` int(11) unsigned NOT NULL DEFAULT '0', + `account_expired` tinyint( 1 ) NOT NULL DEFAULT '0', + `account_expires_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `expire_notification_sent` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `allow_cid` mediumtext NOT NULL, `allow_gid` mediumtext NOT NULL, `deny_cid` mediumtext NOT NULL, |