0001_initial.py 697 B

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