1234567891011121314151617181920 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.11 on 2018-03-27 18:57
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('core', '0002_remove_task_playbook_name'),
- ]
- operations = [
- migrations.AddField(
- model_name='request',
- name='issue',
- field=models.CharField(blank=True, max_length=100),
- ),
- ]
|