short/sql/schema.sql

5 lines
102 B
SQL

CREATE TABLE urls (
id SERIAL PRIMARY KEY,
hash TEXT NOT NULL UNIQUE,
long_url TEXT NOT NULL
);