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.

23 lines
555 B

  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import models, migrations
  4. from django.conf import settings
  5. class Migration(migrations.Migration):
  6. dependencies = [("api", "0004_auto_20150616_1319")]
  7. operations = [
  8. migrations.AlterField(
  9. model_name="check",
  10. name="user",
  11. field=models.ForeignKey(
  12. blank=True,
  13. to=settings.AUTH_USER_MODEL,
  14. null=True,
  15. on_delete=models.CASCADE,
  16. ),
  17. )
  18. ]