13 lines
375 B
Python
13 lines
375 B
Python
|
from django.core.management.base import BaseCommand, CommandError
|
||
|
|
||
|
from events.models.events import Event, update_event_searchable
|
||
|
import urllib
|
||
|
import datetime
|
||
|
|
||
|
class Command(BaseCommand):
|
||
|
help = 'Regenerated Searchable records from this node'
|
||
|
|
||
|
def handle(self, *args, **options):
|
||
|
for event in Event.objects.all():
|
||
|
update_event_searchable(event)
|