summaryrefslogtreecommitdiffstats
path: root/news
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 /news
parentfcc810bfdf844e644fd92b1225a0f5f204ba4440 (diff)
downloadarchweb-b8b85e7f2165044820d57fbfa9e674594e5ccb86.tar.gz
archweb-b8b85e7f2165044820d57fbfa9e674594e5ccb86.zip
Update migrations for Python 3
Diffstat (limited to 'news')
-rw-r--r--news/migrations/0001_squashed_0002_news_send_announce.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/news/migrations/0001_squashed_0002_news_send_announce.py b/news/migrations/0001_squashed_0002_news_send_announce.py
index fc1ccc8b..9250e4e4 100644
--- a/news/migrations/0001_squashed_0002_news_send_announce.py
+++ b/news/migrations/0001_squashed_0002_news_send_announce.py
@@ -21,13 +21,13 @@ class Migration(migrations.Migration):
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('slug', models.SlugField(max_length=255, unique=True)),
- ('postdate', models.DateTimeField(db_index=True, verbose_name=b'post date')),
+ ('postdate', models.DateTimeField(db_index=True, verbose_name='post date')),
('last_modified', models.DateTimeField(db_index=True, editable=False)),
('title', models.CharField(max_length=255)),
('guid', models.CharField(editable=False, max_length=255)),
('content', models.TextField()),
('safe_mode', models.BooleanField(default=True)),
- ('author', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name=b'news_author', to=settings.AUTH_USER_MODEL)),
+ ('author', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='news_author', to=settings.AUTH_USER_MODEL)),
('send_announce', models.BooleanField(default=True)),
],
options={