aboutsummaryrefslogtreecommitdiff
path: root/license_protected_downloads/migrations/0002_download_ref.py
blob: c812057dd11e5be2e41ad5c78e9f5d1aa786325f (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', '0001_initial'),
    ]

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