X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/70880645deaf4929456d51fd8bbeba07f324b040..9d7d8b6bf3dcc7b8322bc4d636d793fe46c106e8:/src/dictionary/models.py?ds=inline diff --git a/src/dictionary/models.py b/src/dictionary/models.py index cadee0d13..a3ac1ac96 100644 --- a/src/dictionary/models.py +++ b/src/dictionary/models.py @@ -1,5 +1,5 @@ -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# 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.db import models, transaction from celery import shared_task @@ -25,7 +25,7 @@ class Qualifier(models.Model): class Note(models.Model): """Represents a single annotation from a book.""" html = models.TextField() - sort_key = models.CharField(max_length=128, db_index=True) + sort_key = models.CharField(max_length=128, db_index=True, db_collation='C') fn_type = models.CharField(max_length=10, db_index=True) qualifiers = models.ManyToManyField(Qualifier) language = models.CharField(max_length=10, db_index=True)