pgx/examples/url_shortener/structure.sql
2013-08-05 13:08:45 -05:00

4 lines
75 B
SQL

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