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.

19 lines
427 B

  1. # Generated by Django 2.1.4 on 2018-12-25 23:15
  2. from django.db import migrations, models
  3. import uuid
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ('api', '0046_auto_20181218_1245'),
  7. ]
  8. operations = [
  9. migrations.AlterField(
  10. model_name='channel',
  11. name='code',
  12. field=models.UUIDField(default=uuid.uuid4, editable=False, unique=True),
  13. ),
  14. ]