...

Text file src/github.com/jackc/pgx/v4/examples/url_shortener/structure.sql

Documentation: github.com/jackc/pgx/v4/examples/url_shortener

     1create table shortened_urls (
     2  id text primary key,
     3  url text not null
     4);

View as plain text