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.

24 lines
666 B

  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import models, migrations
  4. from django.utils.timezone import utc
  5. import datetime
  6. class Migration(migrations.Migration):
  7. dependencies = [("api", "0003_auto_20150616_1249")]
  8. operations = [
  9. migrations.RemoveField(model_name="check", name="enabled"),
  10. migrations.AddField(
  11. model_name="check",
  12. name="created",
  13. field=models.DateTimeField(
  14. auto_now_add=True,
  15. default=datetime.datetime(2015, 6, 16, 13, 19, 17, 218278, tzinfo=utc),
  16. ),
  17. preserve_default=False,
  18. ),
  19. ]