Skip to content

Commit 74ce67d

Browse files
committed
Add migration file.
1 parent adc0fba commit 74ce67d

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 2.1.15 on 2020-02-24 11:26
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('codespeed', '0003_project_default_branch'),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name='branch',
15+
name='display_on_comparison_page',
16+
field=models.BooleanField(default=True, verbose_name='True to display this branch on the comparison page'),
17+
),
18+
]

0 commit comments

Comments
 (0)