adjutant/adjutant/api/migrations/0004_auto_20160929_0317.py
adrian-turjak af986c28fc Renaming StackTask to Adjutant
* This patch is just a search and replace with minor tweaks.
* No functional changes, just renaming.

Change-Id: I103790be7c0cd9234545e25e21ab1768cb5eb131
2017-05-17 12:25:45 +12:00

20 lines
424 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('api', '0003_task_approved_by'),
]
operations = [
migrations.AlterField(
model_name='task',
name='project_id',
field=models.CharField(max_length=64, null=True, db_index=True),
),
]