pgx/examples/url_shortener/structure.sql

4 lines
75 B
SQL

create table shortened_urls (
id text primary key,
url text not null
);