Fundraising in PDF.
[wolnelektury.git] / src / api / migrations / 0005_consumer_nonce_resource_token.py
index 7132203..85fa50a 100644 (file)
@@ -1,7 +1,6 @@
-# -*- coding: utf-8 -*-
-# Generated by Django 1.11.20 on 2019-02-28 22:38
-from __future__ import unicode_literals
-
+# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
+#
 from django.conf import settings
 from django.db import migrations, models
 import django.db.models.deletion
@@ -23,7 +22,7 @@ class Migration(migrations.Migration):
                 ('description', models.TextField()),
                 ('key', models.CharField(max_length=18)),
                 ('secret', models.CharField(max_length=32)),
-                ('status', models.CharField(choices=[(b'pending', b'Pending approval'), (b'accepted', b'Accepted'), (b'canceled', b'Canceled')], default=b'pending', max_length=16)),
+                ('status', models.CharField(choices=[('pending', 'Pending approval'), ('accepted', 'Accepted'), ('canceled', 'Canceled')], default='pending', max_length=16)),
                 ('user', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='consumers', to=settings.AUTH_USER_MODEL)),
             ],
         ),