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.

30 lines
780 B

  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import models, migrations
  4. import datetime
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('api', '0002_auto_20150616_0732'),
  8. ]
  9. operations = [
  10. migrations.AddField(
  11. model_name='check',
  12. name='name',
  13. field=models.CharField(max_length=100, blank=True),
  14. ),
  15. migrations.AlterField(
  16. model_name='check',
  17. name='alert_after',
  18. field=models.DateTimeField(editable=False, null=True, blank=True),
  19. ),
  20. migrations.AlterField(
  21. model_name='check',
  22. name='timeout',
  23. field=models.DurationField(default=datetime.timedelta(1)),
  24. ),
  25. ]