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.

27 lines
734 B

  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import models, migrations
  4. class Migration(migrations.Migration):
  5. dependencies = [("api", "0008_auto_20150801_1213")]
  6. operations = [
  7. migrations.AddField(
  8. model_name="ping",
  9. name="scheme",
  10. field=models.CharField(max_length=10, default="http"),
  11. ),
  12. migrations.AlterField(
  13. model_name="ping",
  14. name="method",
  15. field=models.CharField(blank=True, max_length=10),
  16. ),
  17. migrations.AlterField(
  18. model_name="ping",
  19. name="remote_addr",
  20. field=models.GenericIPAddressField(blank=True, null=True),
  21. ),
  22. ]