0013_acme_challenge.py 466 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.10.3 on 2016-12-27 07:59
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('desecapi', '0012_move_dyn_flag'),
  8. ]
  9. operations = [
  10. migrations.AddField(
  11. model_name='domain',
  12. name='acme_challenge',
  13. field=models.CharField(max_length=255, blank=True),
  14. ),
  15. ]