aboutsummaryrefslogtreecommitdiff
path: root/license_protected_downloads/migrations/0002_download_ref.py
diff options
context:
space:
mode:
Diffstat (limited to 'license_protected_downloads/migrations/0002_download_ref.py')
-rw-r--r--license_protected_downloads/migrations/0002_download_ref.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/license_protected_downloads/migrations/0002_download_ref.py b/license_protected_downloads/migrations/0002_download_ref.py
new file mode 100644
index 0000000..c812057
--- /dev/null
+++ b/license_protected_downloads/migrations/0002_download_ref.py
@@ -0,0 +1,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),
+ ),
+ ]