blob: 53696c16486f35685e03729a8b86eaac1c2b76db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
from django.db import migrations
from django.core.management import call_command
def load_data(apps, __):
call_command("process_initialize_item_keys", "--quiet", "--clean-old")
class Migration(migrations.Migration):
dependencies = [
('ishtar_common', '0266_migrate_cached_town'),
]
operations = [
migrations.RunPython(load_data)
]
|