X-Git-Url: http://git.veekun.com/zzz-pokedex.git/blobdiff_plain/b69949a6ef5febf5c8c0a66177b5a21e295709ca..a9db97a644eca7a0f5d88d95a2d7235dd6a926cf:/pokedex/db/tables.py diff --git a/pokedex/db/tables.py b/pokedex/db/tables.py index f366192..39a2948 100644 --- a/pokedex/db/tables.py +++ b/pokedex/db/tables.py @@ -3,7 +3,8 @@ from sqlalchemy import Column, ForeignKey, MetaData, Table from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.ext.associationproxy import association_proxy -from sqlalchemy.orm import backref, relation +from sqlalchemy.orm import backref, eagerload_all, relation +from sqlalchemy.orm.session import Session from sqlalchemy.sql import and_ from sqlalchemy.types import * @@ -20,6 +21,11 @@ class Ability(TableBase): generation_id = Column(Integer, ForeignKey('generations.id'), nullable=False) effect = Column(rst.RstTextColumn(5120), nullable=False) short_effect = Column(rst.RstTextColumn(255), nullable=False) + +class AbilityFlavorText(TableBase): + __tablename__ = 'ability_flavor_text' + ability_id = Column(Integer, ForeignKey('abilities.id'), primary_key=True, nullable=False, autoincrement=False) + version_group_id = Column(Integer, ForeignKey('version_groups.id'), primary_key=True, nullable=False, autoincrement=False) flavor_text = Column(Unicode(64), nullable=False) class Berry(TableBase): @@ -281,8 +287,13 @@ class Machine(TableBase): __tablename__ = 'machines' machine_number = Column(Integer, primary_key=True, nullable=False, autoincrement=False) version_group_id = Column(Integer, ForeignKey('version_groups.id'), primary_key=True, nullable=False, autoincrement=False) + item_id = Column(Integer, ForeignKey('items.id'), nullable=False) move_id = Column(Integer, ForeignKey('moves.id'), nullable=False) + @property + def is_hm(self): + return self.machine_number >= 100 + class MoveBattleStyle(TableBase): __tablename__ = 'move_battle_styles' id = Column(Integer, primary_key=True, nullable=False) @@ -630,8 +641,11 @@ class Version(TableBase): ### Relations down here, to avoid ordering problems +Ability.flavor_text = relation(AbilityFlavorText, order_by=AbilityFlavorText.version_group_id, backref='abilities') Ability.generation = relation(Generation, backref='abilities') +AbilityFlavorText.version_group = relation(VersionGroup) + Berry.berry_firmness = relation(BerryFirmness, backref='berries') Berry.firmness = association_proxy('berry_firmness', 'name') Berry.flavors = relation(BerryFlavor, order_by=BerryFlavor.contest_type_id, backref='berry') @@ -678,6 +692,7 @@ Item.berry = relation(Berry, uselist=False, backref='item') Item.flags = relation(ItemFlag, secondary=ItemFlagMap.__table__) Item.flavor_text = relation(ItemFlavorText, order_by=ItemFlavorText.version_group_id.asc(), backref='item') Item.fling_effect = relation(ItemFlingEffect, backref='items') +Item.machines = relation(Machine, order_by=Machine.version_group_id.asc()) Item.category = relation(ItemCategory) Item.pocket = association_proxy('category', 'pocket') @@ -692,6 +707,7 @@ Location.region = relation(Region, backref='locations') LocationArea.location = relation(Location, backref='areas') +Machine.item = relation(Item) Machine.version_group = relation(VersionGroup) Move.contest_effect = relation(ContestEffect, backref='moves') @@ -777,7 +793,7 @@ Pokemon.items = relation(PokemonItem, backref='pokemon') Pokemon.generation = relation(Generation, backref='pokemon') Pokemon.shape = relation(PokemonShape, backref='pokemon') Pokemon.stats = relation(PokemonStat, backref='pokemon') -Pokemon.types = relation(Type, secondary=PokemonType.__table__) +Pokemon.types = relation(Type, secondary=PokemonType.__table__, order_by=PokemonType.slot.asc()) PokemonDexNumber.pokedex = relation(Pokedex)