Skip to content

Commit 028edc9

Browse files
authored
Merge branch 'main' into release_v0.2.6
2 parents cc9a46f + 1fae0a7 commit 028edc9

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
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)