回答編集履歴
2
a
test
CHANGED
@@ -1,27 +1,15 @@
|
|
1
1
|
[このGitHubのIssues](https://github.com/jazzband/django-taggit/issues/679)にありました。
|
2
|
-
|
3
2
|
```Python
|
4
|
-
|
5
3
|
from taggit.managers import TaggableManager
|
6
|
-
|
7
4
|
from taggit.models import GenericUUIDTaggedItemBase, TaggedItemBase
|
8
5
|
|
9
|
-
|
10
|
-
|
11
6
|
class UUIDTaggedItem(GenericUUIDTaggedItemBase, TaggedItemBase):
|
12
|
-
|
13
7
|
class Meta:
|
14
|
-
|
15
8
|
verbose_name = _("Tag")
|
16
|
-
|
17
9
|
verbose_name_plural = _("Tags")
|
18
10
|
|
19
|
-
|
20
|
-
|
21
11
|
class Post(models.Model):
|
22
|
-
|
23
12
|
tags = TaggableManager(blank=True, through=UUIDTaggedItem)
|
24
|
-
|
13
|
+
```
|
25
|
-
`
|
14
|
+
`through`で中間テーブルを変更するとうまくいった。
|
26
|
-
|
27
15
|
自分の環境で確認済みです。
|
1
編集
test
CHANGED
@@ -24,4 +24,4 @@
|
|
24
24
|
|
25
25
|
````through`で中間テーブルを変更するとうまくいった。
|
26
26
|
|
27
|
-
|
27
|
+
自分の環境で確認済みです。
|