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.

17 lines
411 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 = [("api", "0046_auto_20181218_1245")]
  6. operations = [
  7. migrations.AlterField(
  8. model_name="channel",
  9. name="code",
  10. field=models.UUIDField(default=uuid.uuid4, editable=False, unique=True),
  11. )
  12. ]