Skip to content

Commit

Permalink
Merge pull request #911 from hackforla/909-feat-serve-geojson
Browse files Browse the repository at this point in the history
909 feat serve geojson
  • Loading branch information
mattyweb authored Jan 27, 2021
2 parents 6ef107f + 7fb9267 commit 74c8d48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def upgrade():
geometries_table = op.create_table(
'geometries',
sa.Column('nc_id', sa.SMALLINT(), primary_key=True),
sa.Column('geometry', Geometry(geometry_type="MULTIPOLYGON", srid=4326), nullable=False)
sa.Column('geometry', Geometry(geometry_type="MULTIPOLYGON"), nullable=False)
)

with open(BOUNDARY_FILE, "r") as read_file:
Expand Down

0 comments on commit 74c8d48

Please sign in to comment.