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.

26 lines
669 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 = [
  8. ('api', '0003_auto_20150616_1249'),
  9. ]
  10. operations = [
  11. migrations.RemoveField(
  12. model_name='check',
  13. name='enabled',
  14. ),
  15. migrations.AddField(
  16. model_name='check',
  17. name='created',
  18. field=models.DateTimeField(auto_now_add=True, default=datetime.datetime(2015, 6, 16, 13, 19, 17, 218278, tzinfo=utc)),
  19. preserve_default=False,
  20. ),
  21. ]