From 0087fb17998cb33ce82d363cc532eafd12f72de2 Mon Sep 17 00:00:00 2001 From: Hidde Wieringa Date: Mon, 16 Dec 2024 21:22:05 +0100 Subject: [PATCH] indent --- api/prepare_facilities.sql | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/api/prepare_facilities.sql b/api/prepare_facilities.sql index 721a6ac9..0ac1c902 100644 --- a/api/prepare_facilities.sql +++ b/api/prepare_facilities.sql @@ -44,15 +44,15 @@ CREATE TABLE openrailwaymap_facilities_for_search AS geom FROM ( SELECT DISTINCT ON (osm_id, key, value, name, railway, station, railway_ref, route_count, geom) - osm_id, - (each(name_tags)).key AS key, - (each(name_tags)).value AS value, - name, - railway, - station, - railway_ref, - route_count, - center as geom + osm_id, + (each(name_tags)).key AS key, + (each(name_tags)).value AS value, + name, + railway, + station, + railway_ref, + route_count, + center as geom FROM stations_with_route_counts WHERE railway IN ('station', 'halt', 'tram_stop', 'service_station', 'yard', 'junction', 'spur_junction', 'crossover', 'site')