Change table names

doc_update
Etzelia 2018-08-29 11:27:49 -05:00 committed by GitHub
parent 143508c5c5
commit ae47151237
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions

View File

@ -121,7 +121,7 @@ class Dimension(enum.Enum):
class Player(SQL_Base):
__tablename__ = 'Players'
__tablename__ = 'geoffrey_players'
id = Column(Integer, primary_key=True, autoincrement=True)
mc_uuid = Column(String(128))
discord_uuid = Column(String(128))
@ -140,7 +140,7 @@ class Player(SQL_Base):
class Tunnel(SQL_Base):
__tablename__ = 'Tunnels'
__tablename__ = 'geoffrey_tunnels'
id = Column(Integer, primary_key=True, autoincrement=True)
tunnel_number = Column(Integer)
tunnel_direction = Column(Enum(TunnelDirection))
@ -171,7 +171,7 @@ class Tunnel(SQL_Base):
class Location(SQL_Base):
__tablename__ = 'Locations'
__tablename__ = 'geoffrey_locations'
id = Column(Integer, primary_key=True)
name = Column(String(128), unique=True)
@ -228,7 +228,7 @@ class Location(SQL_Base):
class Base(Location):
__tablename__ = 'Bases'
__tablename__ = 'geoffrey_bases'
base_id = Column(Integer, ForeignKey('Locations.id', ondelete='CASCADE'), primary_key=True)
name = column_property(Column(String(128)), Location.name)
@ -238,7 +238,7 @@ class Base(Location):
class Shop(Location):
__tablename__ = 'Shops'
__tablename__ = 'geoffrey_shops'
shop_id = Column(Integer, ForeignKey('Locations.id', ondelete='CASCADE'), primary_key=True)
name = column_property(Column(String(128)), Location.name)
inventory = relationship('ItemListing', back_populates='shop', cascade='all, delete-orphan', lazy='dynamic')
@ -270,7 +270,7 @@ class Shop(Location):
class ItemListing(SQL_Base):
__tablename__ = 'Items'
__tablename__ = 'geoffrey_items'
id = Column(Integer, primary_key=True, autoincrement=True)
name = Column(String(128))
@ -290,4 +290,4 @@ class ItemListing(SQL_Base):
return '**{}** **{}** for **{}D**'.format(self.amount, self.name, self.price)
def __str__(self):
return '**{}**, selling {}'.format(self.shop.name, self.listing_str())
return '**{}**, selling {}'.format(self.shop.name, self.listing_str())