0002_cache_version.py 362 B

1234567891011121314151617
  1. # Generated by Django 1.11.16 on 2018-12-02 15:54
  2. from django.db import migrations
  3. from misago.cache.operations import StartCacheVersioning
  4. from misago.conf import SETTINGS_CACHE
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('misago_conf', '0001_initial'),
  8. ]
  9. operations = [
  10. StartCacheVersioning(SETTINGS_CACHE)
  11. ]