0003_request_issue.py 464 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11 on 2018-03-27 18:57
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('core', '0002_remove_task_playbook_name'),
  8. ]
  9. operations = [
  10. migrations.AddField(
  11. model_name='request',
  12. name='issue',
  13. field=models.CharField(blank=True, max_length=100),
  14. ),
  15. ]