Skip to content

Commit 1fae0a7

Browse files
authored
Merge pull request #178 from bas-amop/dw/taggit-missing-migration
add migration for route.tags help text
2 parents 88c3c11 + 80d5b78 commit 1fae0a7

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9-
9+
10+
11+
### Fixed
12+
- Added a missing migration.
13+
14+
1015
## 0.2.5 - 2025-12-15
1116

1217

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Generated by Django 5.2.9 on 2025-12-17 15:31
2+
3+
import taggit.managers
4+
from django.db import migrations
5+
6+
7+
class Migration(migrations.Migration):
8+
dependencies = [
9+
("route_api", "0017_route_tags"),
10+
(
11+
"taggit",
12+
"0006_rename_taggeditem_content_type_object_id_taggit_tagg_content_8fc721_idx",
13+
),
14+
]
15+
16+
operations = [
17+
migrations.AlterField(
18+
model_name="route",
19+
name="tags",
20+
field=taggit.managers.TaggableManager(
21+
blank=True,
22+
help_text="Tags for route",
23+
through="taggit.TaggedItem",
24+
to="taggit.Tag",
25+
verbose_name="Tags",
26+
),
27+
),
28+
]

0 commit comments

Comments
 (0)