summaryrefslogtreecommitdiffstats
path: root/todolists
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@vdwaa.nl>2018-12-16 17:05:56 +0100
committerJelle van der Waa <jelle@vdwaa.nl>2019-01-21 21:19:58 +0100
commitb8b85e7f2165044820d57fbfa9e674594e5ccb86 (patch)
treefaa72b51ab1bc357da669d5ed8776cedb7274d07 /todolists
parentfcc810bfdf844e644fd92b1225a0f5f204ba4440 (diff)
downloadarchweb-b8b85e7f2165044820d57fbfa9e674594e5ccb86.tar.gz
archweb-b8b85e7f2165044820d57fbfa9e674594e5ccb86.zip
Update migrations for Python 3
Diffstat (limited to 'todolists')
-rw-r--r--todolists/migrations/0001_squashed_0002_remove_todolist_old_id.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/todolists/migrations/0001_squashed_0002_remove_todolist_old_id.py b/todolists/migrations/0001_squashed_0002_remove_todolist_old_id.py
index 8954c99e..4acb0fe5 100644
--- a/todolists/migrations/0001_squashed_0002_remove_todolist_old_id.py
+++ b/todolists/migrations/0001_squashed_0002_remove_todolist_old_id.py
@@ -28,7 +28,7 @@ class Migration(migrations.Migration):
('created', models.DateTimeField(db_index=True)),
('last_modified', models.DateTimeField(editable=False)),
('raw', models.TextField(blank=True)),
- ('creator', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name=b'created_todolists', to=settings.AUTH_USER_MODEL)),
+ ('creator', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='created_todolists', to=settings.AUTH_USER_MODEL)),
],
options={
'get_latest_by': 'created',
@@ -43,7 +43,7 @@ class Migration(migrations.Migration):
('created', models.DateTimeField(editable=False)),
('last_modified', models.DateTimeField(editable=False)),
('removed', models.DateTimeField(blank=True, null=True)),
- ('status', models.SmallIntegerField(choices=[(0, b'Incomplete'), (1, b'Complete'), (2, b'In-progress')], default=0)),
+ ('status', models.SmallIntegerField(choices=[(0, 'Incomplete'), (1, 'Complete'), (2, 'In-progress')], default=0)),
('comments', models.TextField(blank=True, null=True)),
('arch', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='main.Arch')),
('pkg', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='main.Package')),