123456789101112131415161718192021222324 |
- # -*- coding: utf-8 -*-
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ]
- operations = [
- migrations.CreateModel(
- name='CacheVersion',
- fields=[
- ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
- ('cache', models.CharField(max_length=128)),
- ('version', models.PositiveIntegerField(default=0)),
- ],
- options={
- },
- bases=(models.Model,),
- ),
- ]
|