mfashby.net

Website mfashby.net
git clone git://code.mfashby.net:/mfashby.net
Log | Files | Refs | Submodules | README

0_init.sql (202B)


      1 create table if not exists comments (url text not null, author text not null, comment text not null, ts timestamptz not null default now());
      2 create index if not exists idx_comments_url on comments(url);