Explorar el Código

Remove duplicate model

JoostSijm hace 5 años
padre
commit
537bdc462f
Se han modificado 1 ficheros con 0 adiciones y 9 borrados
  1. 0 9
      app/models.py

+ 0 - 9
app/models.py

@@ -149,15 +149,6 @@ class PlayerLocation(Base):
     until_date_time = Column(DateTime)
 
 
-class StateRegion(Base):
-    """Model for state region"""
-    __tablename__ = 'state_region'
-    state_id = Column(Integer, ForeignKey('state.id'), primary_key=True)
-    region_id = Column(Integer, ForeignKey('region.id'), primary_key=True)
-    from_date_time = Column(DateTime)
-    until_date_time = Column(DateTime)
-
-
 class Player(Base):
     """Model for player"""
     __tablename__ = 'player'