diff options
author | Friendika <info@friendika.com> | 2011-09-29 21:20:19 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-09-29 21:20:19 -0700 |
commit | 097c1f8da774c82f441f370f391f93acc2025ccd (patch) | |
tree | 48280ddd3fb1257c774fc6ca11061d0f163b508f /update.php | |
parent | c1221cc052c78550c214e7974407cc66992eadbe (diff) | |
download | volse-hubzilla-097c1f8da774c82f441f370f391f93acc2025ccd.tar.gz volse-hubzilla-097c1f8da774c82f441f370f391f93acc2025ccd.tar.bz2 volse-hubzilla-097c1f8da774c82f441f370f391f93acc2025ccd.zip |
do not poll for abandoned accounts
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/update.php b/update.php index 2f9277dae..0dd599e83 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1092 ); +define( 'UPDATE_VERSION' , 1093 ); /** * @@ -770,3 +770,7 @@ function update_1091() { } +function update_1092() { + q("ALTER TABLE `user` ADD INDEX ( `login_date` ) "); + q("ALTER TABLE `user` ADD INDEX ( `account_expired` ) "); +}
\ No newline at end of file |