summaryrefslogtreecommitdiff
path: root/nop/migrations
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2017-01-06 01:07:50 (GMT)
committerChristian Pointner <equinox@helsinki.at>2017-01-06 01:07:50 (GMT)
commit11ff3ea58c83f82e4d9d7b58f4f57a8718a2f8a2 (patch)
treeda2489f49c956f5d618f551369f2027a7228f6e3 /nop/migrations
parentbee4dba4ed6c8519a9a87027d20d3c3f284ec7fa (diff)
added support for new noplaying db format
Diffstat (limited to 'nop/migrations')
-rw-r--r--nop/migrations/0001_initial.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/nop/migrations/0001_initial.py b/nop/migrations/0001_initial.py
index 67a04e8..0285517 100644
--- a/nop/migrations/0001_initial.py
+++ b/nop/migrations/0001_initial.py
@@ -2,6 +2,7 @@
from __future__ import unicode_literals
from django.db import migrations, models
+import nop.models
class Migration(migrations.Migration):
@@ -22,7 +23,7 @@ class Migration(migrations.Migration):
('title', models.CharField(max_length=765, blank=True)),
('artist', models.CharField(max_length=765, blank=True)),
('album', models.CharField(max_length=765, blank=True)),
- ('ismusic', models.IntegerField(null=True, blank=True)),
+ ('carttype', nop.models.CartTypeField(max_length=64, blank=True)),
],
options={
'ordering': ['-timestamp'],
@@ -39,7 +40,7 @@ class Migration(migrations.Migration):
('title', models.CharField(max_length=765, blank=True)),
('artist', models.CharField(max_length=765, blank=True)),
('album', models.CharField(max_length=765, blank=True)),
- ('ismusic', models.IntegerField(null=True, blank=True)),
+ ('carttype', nop.models.CartTypeField(max_length=64, blank=True)),
],
options={
'ordering': ['-timestamp'],