diff options
-rwxr-xr-x | scripts/daily_cleanup.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/scripts/daily_cleanup.py b/scripts/daily_cleanup.py deleted file mode 100755 index fcc5bce5..00000000 --- a/scripts/daily_cleanup.py +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -from django.db import backend, connection, transaction -""" Daily cleanup file - This purges the session data that is old from the session table. -""" -def clean_up(): - # Clean up old database records - cursor = connection.cursor() - cursor.execute("DELETE FROM %s WHERE %s < NOW()" % \ - (backend.quote_name('django_session'), backend.quote_name('expire_date'))) - cursor.execute("OPTIMIZE TABLE %s" % backend.quote_name('django_session')) - transaction.commit_unless_managed() - -if __name__ == "__main__": - clean_up() |