summaryrefslogtreecommitdiff
path: root/patchwork/migrations/0036_project_commit_url_format.py
blob: f74d8cf111dc9e7bbe2235f3812ad3bbd4c6e56c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('patchwork', '0035_project_list_archive_url_format'),
    ]

    operations = [
        migrations.AddField(
            model_name='project',
            name='commit_url_format',
            field=models.CharField(
                blank=True,
                help_text=b'URL format for a particular commit. {} will be '
                          b'replaced by the commit SHA.',
                max_length=2000,
            ),
        ),
    ]