We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cc9a46f + 1fae0a7 commit 028edc9Copy full SHA for 028edc9
polarrouteserver/route_api/migrations/0018_alter_route_tags.py
@@ -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