Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Make migration 0003 #11

Merged
merged 2 commits into from
Jul 26, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions django_snow/migrations/0003_auto_20190607_1500.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.0.13 on 2019-06-07 22:00

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('django_snow', '0002_changemgmt_add_createtime_closetime'),
]

operations = [
migrations.AlterField(
model_name='changerequest',
name='state',
field=models.CharField(choices=[('1', 'Open'), ('2', 'In Progress'), ('3', 'Complete'), ('4', 'Complete With Errors')], help_text='The current state the change order is in.', max_length=3),
),
]