1234567891011121314151617 |
- # -*- coding: utf-8 -*-
- from django.db import migrations
- from misago.acl import ACL_CACHE
- from misago.cache.operations import StartCacheVersioning
- class Migration(migrations.Migration):
- dependencies = [
- ('misago_acl', '0003_default_roles'),
- ('misago_cache', '0001_initial'),
- ]
- operations = [
- StartCacheVersioning(ACL_CACHE)
- ]
|