- add automatic inclinometer datad for boreholes KB1 and KB2 in Gschliefgraben
This commit is contained in:
parent
6441479e14
commit
fb6447f79b
4 changed files with 522 additions and 7 deletions
|
@ -36,10 +36,10 @@ class FbObservation(Base):
|
|||
roll = Column('ROLL', String)
|
||||
ora = Column('ORA', Time, primary_key=True)
|
||||
sensore = Column('SENSORE', Integer, primary_key=True)
|
||||
data = Column('DATA', Date)
|
||||
data = Column('DATA', Date, primary_key=True)
|
||||
temperature = Column('TEMPERATURA', String)
|
||||
|
||||
chiave_id = Column('CATENA', Integer, ForeignKey('CATENE.CHIAVE'), nullable=True)
|
||||
|
||||
chiave_id = Column('CATENA', Integer, ForeignKey('CATENE.CHIAVE'), primary_key=True, nullable=True)
|
||||
catena = relationship(
|
||||
"Catena", back_populates="observations", lazy="joined")
|
||||
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue