whoops... stashed

pull/68/head
Konstantin Gründger 2017-12-08 19:38:10 +01:00
rodzic c00812c141
commit 61d6e71109
2 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -16,7 +16,7 @@ class Beacon(AbstractConcreteBase, Base):
name = Column(String)
receiver_name = Column(String(9))
dstcall = None
dstcall = Column(String)
timestamp = Column(DateTime, index=True)
symboltable = None
symbolcode = None

Wyświetl plik

@ -16,6 +16,8 @@ class Device(Base):
software_version = Column(Float)
hardware_version = Column(SmallInteger)
real_address = Column(String(6))
firstseen = Column(DateTime, index=True)
lastseen = Column(DateTime, index=True)
# Relations
aircraft_beacons = relationship('AircraftBeacon')