aboutsummaryrefslogtreecommitdiff
path: root/license_protected_downloads/migrations/0003_auto_20161216_1137.py
blob: 1c2aed04ea7b7c82df4b5cfc2ee1cd2cf9f53792 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('license_protected_downloads', '0002_download_ref'),
    ]

    operations = [
        migrations.AlterField(
            model_name='download',
            name='ref',
            field=models.CharField(max_length=4096, null=True, blank=True),
        ),
    ]