Files
rs-links/migrations/20260325214345_create_links_table.sql
2026-03-25 18:01:07 -05:00

6 lines
136 B
SQL

create table links (
code text primary key,
long_url text not null,
created_at text not null default (current_timestamp)
);