aboutsummaryrefslogtreecommitdiff
path: root/zig-comments/src/migrations/0_init.sql
blob: a799784663dab9beab3134682e0564d808bf3a54 (plain)
1
2
create table if not exists comments (url text not null, author text not null, comment text not null, ts timestamptz not null default now());
create index if not exists idx_comments_url on comments(url);