chore(api): use fully qualified model names
This commit is contained in:
parent
fc98b617cf
commit
4009e7eeb6
12 changed files with 29 additions and 23 deletions
|
@ -24,7 +24,7 @@ class Playlist(models.Model):
|
|||
|
||||
class PlaylistContent(models.Model):
|
||||
playlist = models.ForeignKey(
|
||||
"Playlist",
|
||||
"schedule.Playlist",
|
||||
on_delete=models.DO_NOTHING,
|
||||
blank=True,
|
||||
null=True,
|
||||
|
@ -36,7 +36,7 @@ class PlaylistContent(models.Model):
|
|||
null=True,
|
||||
)
|
||||
block = models.ForeignKey(
|
||||
"SmartBlock",
|
||||
"schedule.SmartBlock",
|
||||
on_delete=models.DO_NOTHING,
|
||||
blank=True,
|
||||
null=True,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue