Commit 8368c70a authored by Andrea Giannetti's avatar Andrea Giannetti
Browse files

Added timestamp columns.

parent 516b7369
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -56,6 +56,7 @@ class LinePars(Base):
    __tablename__ = "lines_parameters"
    zipped_grid_name = Column(String(150), primary_key=True)
    lines_mode = Column(String(20))
    created_on = Column(DateTime)


class SpeciesAndPartners(Base):
@@ -65,6 +66,7 @@ class SpeciesAndPartners(Base):
    molecular_abundance = Column(Float)
    collision_partner = Column(String(100), primary_key=True)
    molecular_abundance_collision_partner = Column(Float)
    created_on = Column(DateTime)


class ModelPars(Base):
@@ -81,6 +83,7 @@ class ModelPars(Base):
    width_kms = Column(Float)
    nchannels = Column(Integer)
    npix = Column(Integer)
    created_on = Column(DateTime)


class MomentZeroMaps(Base):
@@ -89,6 +92,7 @@ class MomentZeroMaps(Base):
    fits_cube_name = Column(String(150))
    integration_limit_low = Column(Float)
    integration_limit_high = Column(Float)
    created_on = Column(DateTime)


class RatioMaps(Base):
@@ -98,6 +102,7 @@ class RatioMaps(Base):
    mom_zero_name_2 = Column(String(150))
    aggregated_ratio = Column(Float)
    aggregation_function = Column(String(20))
    created_on = Column(DateTime)


# class Address(Base):