adjust migration

This commit is contained in:
jonaswinkler 2021-02-24 23:52:25 +01:00
parent 7233695824
commit 87c364a104
3 changed files with 9 additions and 9 deletions

View File

@ -19,12 +19,12 @@ class TagAdmin(admin.ModelAdmin):
list_display = ( list_display = (
"name", "name",
"colour", "color",
"match", "match",
"matching_algorithm" "matching_algorithm"
) )
list_filter = ("colour", "matching_algorithm") list_filter = ("color", "matching_algorithm")
list_editable = ("colour", "match", "matching_algorithm") list_editable = ("color", "match", "matching_algorithm")
class DocumentTypeAdmin(admin.ModelAdmin): class DocumentTypeAdmin(admin.ModelAdmin):

View File

@ -25,7 +25,7 @@ def forward(apps, schema_editor):
for tag in Tag.objects.all(): for tag in Tag.objects.all():
colour_old_id = tag.colour_old colour_old_id = tag.colour_old
rgb = COLOURS_OLD[colour_old_id] rgb = COLOURS_OLD[colour_old_id]
tag.colour = rgb tag.color = rgb
tag.save() tag.save()
@ -40,7 +40,7 @@ def reverse(apps, schema_editor):
return 1 return 1
for tag in Tag.objects.all(): for tag in Tag.objects.all():
colour_id = _get_colour_id(tag.colour) colour_id = _get_colour_id(tag.color)
tag.colour_old = colour_id tag.colour_old = colour_id
tag.save() tag.save()
@ -48,7 +48,7 @@ def reverse(apps, schema_editor):
class Migration(migrations.Migration): class Migration(migrations.Migration):
dependencies = [ dependencies = [
('documents', '1005_checksums'), ('documents', '1012_fix_archive_files'),
] ]
operations = [ operations = [
@ -59,8 +59,8 @@ class Migration(migrations.Migration):
), ),
migrations.AddField( migrations.AddField(
model_name='tag', model_name='tag',
name='colour', name='color',
field=models.CharField(blank=True, max_length=7), field=models.CharField(blank=True, max_length=7, verbose_name='color'),
), ),
migrations.RunPython(forward, reverse), migrations.RunPython(forward, reverse),
migrations.RemoveField( migrations.RemoveField(

View File

@ -78,7 +78,7 @@ class Correspondent(MatchingModel):
class Tag(MatchingModel): class Tag(MatchingModel):
colour = models.CharField( color = models.CharField(
_("color"), _("color"),
blank=True, max_length=7) blank=True, max_length=7)