Files
zulip/zephyr/management/commands/expunge_db.py
Keegan McAllister 3715583d29 Implement a command to expunge old UserMessages and Messages from the database
(imported from commit a4873dfa8737c483411d12f30daaebebebf859f9)
2012-11-30 17:24:37 -05:00

12 lines
445 B
Python

from django.core.management.base import BaseCommand
from zephyr.retention_policy import get_UserMessages_to_expunge
from zephyr.models import Message
class Command(BaseCommand):
help = ('Expunge old UserMessages and Messages from the database, '
+ 'according to the retention policy.')
def handle(self, *args, **kwargs):
get_UserMessages_to_expunge().delete()
Message.remove_unreachable()