1234567891011121314151617181920212223 |
- # -*- coding: utf-8 -*-
- #pylint: skip-file
- from __future__ import unicode_literals
- from django.db import migrations, models
- from misago.core.migrationutils import cachebuster_register_cache
- def register_acl_version_tracker(apps, schema_editor):
- cachebuster_register_cache(apps, 'misago_acl')
- class Migration(migrations.Migration):
- dependencies = [
- ('misago_acl', '0001_initial'),
- ('misago_core', '0001_initial'),
- ]
- operations = [
- migrations.RunPython(register_acl_version_tracker),
- ]
|