blob: 4280a126f5032c6d9bc7210bd4a656252d106998 (
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);
|