0001_initial.py 717 B

12345678910111213141516171819202122232425262728
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import migrations, models
  4. class Migration(migrations.Migration):
  5. initial = True
  6. dependencies = []
  7. operations = [
  8. migrations.CreateModel(
  9. name='CacheVersion',
  10. fields=[
  11. (
  12. 'id', models.AutoField(
  13. verbose_name='ID', serialize=False, auto_created=True, primary_key=True
  14. )
  15. ),
  16. ('cache', models.CharField(max_length=128)),
  17. ('version', models.PositiveIntegerField(default=0)),
  18. ],
  19. options={},
  20. bases=(models.Model, ),
  21. ),
  22. ]