Ubuntu Pastebin

Paste from Daniel Holbach at Wed, 20 Jul 2016 13:35:09 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
daniel@daydream:~/dev/sites/developer-ubuntu-com$ cat redirects/migrations/0002_auto_20160720_1334.py
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('redirects', '0001_initial'),
    ]

    operations = [
        migrations.AlterField(
            model_name='pathmatchredirect',
            name='match',
            field=models.CharField(help_text=b'Path prefix to match for this redirect', max_length=256),
        ),
        migrations.AlterField(
            model_name='pathmatchredirect',
            name='preserve_extra',
            field=models.BooleanField(default=True, help_text=b'Should any part of the path after what was matched be appended to the replacement path?'),
        ),
        migrations.AlterField(
            model_name='pathmatchredirect',
            name='replace',
            field=models.CharField(help_text=b'Replacement path', max_length=256),
        ),
    ]
daniel@daydream:~/dev/sites/developer-ubuntu-com$ 
Download as text