You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
443 B

  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import models, migrations
  4. import uuid
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('api', '0013_auto_20151001_2029'),
  8. ]
  9. operations = [
  10. migrations.AlterField(
  11. model_name='check',
  12. name='code',
  13. field=models.UUIDField(default=uuid.uuid4, db_index=True, editable=False),
  14. ),
  15. ]