summaryrefslogtreecommitdiff
path: root/patchwork/migrations/0036_project_commit_url_format.py
blob: 988b365922209fb5ddc2b819f4d01c46bb8fce78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

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,
            ),
        ),
    ]