mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Remove another innerjoin.
Shadow moves have no MoveMeta.
This commit is contained in:
parent
fdf87cf8ce
commit
95fec6065f
1 changed files with 1 additions and 1 deletions
|
@ -2368,7 +2368,7 @@ Move.generation = relationship(Generation,
|
||||||
Move.machines = relationship(Machine,
|
Move.machines = relationship(Machine,
|
||||||
backref='move')
|
backref='move')
|
||||||
Move.meta = relationship(MoveMeta,
|
Move.meta = relationship(MoveMeta,
|
||||||
uselist=False, innerjoin=True,
|
uselist=False,
|
||||||
backref='move')
|
backref='move')
|
||||||
Move.meta_stat_changes = relationship(MoveMetaStatChange)
|
Move.meta_stat_changes = relationship(MoveMetaStatChange)
|
||||||
Move.move_effect = relationship(MoveEffect,
|
Move.move_effect = relationship(MoveEffect,
|
||||||
|
|
Loading…
Reference in a new issue