Skip to content

Commit

Permalink
BGDIDIC-2717: add model
Browse files Browse the repository at this point in the history
  • Loading branch information
faselm authored and [email protected] committed Dec 1, 2023
1 parent bfb5a52 commit 8c10581
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions chsdi/models/vector/uvek.py
Original file line number Diff line number Diff line change
Expand Up @@ -3951,3 +3951,16 @@ class ElektrischeAnlagenUeber36StationPointNoPoly (Base, ElektrischeAnlagenUeber


register(ElektrischeAnlagenUeber36StationPointNoPoly.__bodId__, ElektrischeAnlagenUeber36StationPointNoPoly)


class BetriebeStoerfallverordnungEisenbahnanlagen (Base, Vector):
__table_args__ = ({'schema': 'bav', 'autoload': False})
__tablename__ = 'stoerfallverordnung_eisenbahnanlagen'
__template__ = 'templates/htmlpopup/bav_stoerfallverordnung_eisenbahnanlagen.mako'
__bodId__ = 'ch.bav.betriebe-stoerfallverordnung_eisenbahnanlagen'
__label__ = 'name'
id = Column('bgdi_id', Integer, primary_key=True)
name = Column('name', Unicode)
the_geom = Column(Geometry2D)

register('ch.bav.betriebe-stoerfallverordnung_eisenbahnanlagen', BetriebeStoerfallverordnungEisenbahnanlagen)

0 comments on commit 8c10581

Please sign in to comment.