Skip to content

Commit 28e3944

Browse files
committed
Migration file for new Build state
1 parent 4135bcc commit 28e3944

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 2.2.10 on 2020-03-19 03:38
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('builds', '0014_migrate-doctype-from-project-to-version'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='build',
15+
name='state',
16+
field=models.CharField(choices=[('triggered', 'Triggered'), ('pulling-cache', 'Pulling cache'), ('cloning', 'Cloning'), ('installing', 'Installing'), ('building', 'Building'), ('finished', 'Finished')], default='finished', max_length=55, verbose_name='State'),
17+
),
18+
]

0 commit comments

Comments
 (0)