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.

18 lines
420 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 = [("api", "0005_auto_20150630_2021")]
  7. operations = [
  8. migrations.AddField(
  9. model_name="check",
  10. name="grace",
  11. field=models.DurationField(default=datetime.timedelta(0, 3600)),
  12. )
  13. ]