chore(fix): refactor

This commit is contained in:
dancingCycle 2023-08-28 15:03:13 +02:00
parent 0339153847
commit 2454eadcc5
1 changed files with 4 additions and 1 deletions

View File

@ -3,7 +3,10 @@
CREATE SCHEMA IF NOT EXISTS :schema;
SET search_path to :schema, public;
CREATE TABLE :schema.stops(
DROP TABLE IF EXISTS stops;
CREATE TABLE IF NOT EXISTS :schema.stops
(
stop_seq_no INT,
stop_type CHAR(1),
stop_dhid VARCHAR(63),