Skip to content

Commit

Permalink
BGDIDIC-2882: add model that has been removed by mistake
Browse files Browse the repository at this point in the history
with 3624ba6
  • Loading branch information
ltclm committed Nov 12, 2024
1 parent b87efd3 commit 3c31895
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions chsdi/models/vector/uvek.py
Original file line number Diff line number Diff line change
Expand Up @@ -4338,3 +4338,20 @@ class Landschaftsruhezonen (Base, Vector):
the_geom = Column(Geometry2D)

register('ch.bazl.landschaftsruhezonen', Landschaftsruhezonen)


class ReflektierendeFlaechenFlugplaetze (Base, Vector):
__table_args__ = ({'schema': 'bazl', 'autoload': False})
__tablename__ = 'reflektierende_flaechen_flugplaetze'
__template__ = 'templates/htmlpopup/bazl_reflektierende_flaechen_flugplaetze.mako'
__bodId__ = 'ch.bazl.reflektierende-flaechen_flugplaetze'
__label__ = 'name'
id = Column('bgdi_id', Integer, primary_key=True)
icao = Column('icao', Unicode)
name = Column('name', Unicode)
status_de = Column('status_de', Unicode)
status_fr = Column('status_fr', Unicode)
status_it = Column('status_it', Unicode)
status_en = Column('status_en', Unicode)
the_geom = Column(Geometry2D)
register('ch.bazl.reflektierende-flaechen_flugplaetze', ReflektierendeFlaechenFlugplaetze)

0 comments on commit 3c31895

Please sign in to comment.