1
1
Fork 0

account expiration structures

This commit is contained in:
Friendika 2011-09-18 19:53:45 -07:00
commit 5b3f645939
6 changed files with 16 additions and 6 deletions

View file

@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1088 );
define( 'UPDATE_VERSION' , 1089 );
/**
*
@ -743,3 +743,10 @@ function update_1087() {
}
}
}
function update_1088() {
q("ALTER TABLE `user` ADD `account_expired` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `expire` ,
ADD `account_expires_on` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `account_expired` ,
ADD `expire_notification_sent` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `account_expires_on` ");
}