8 lines
123 B
MySQL
8 lines
123 B
MySQL
|
begin;
|
||
|
create table if not exists "parkaliases" (
|
||
|
"parkID" text,
|
||
|
"alias" text,
|
||
|
primary key("parkID","alias")
|
||
|
);
|
||
|
commit;
|