trackdirect2/misc/database/tables/06_ogn_hidden_station.sql

8 lines
205 B
SQL

create table ogn_hidden_station (
"id" bigserial not null,
"hashed_name" text not null,
primary key (id)
);
create index ogn_hidden_station_hashed_name_idx on ogn_hidden_station(hashed_name);