/* create schema for entrysaver */ CREATE TABLE ckentries (id serial PRIMARY KEY, title text, link text, cktext text, category text, dateadded timestamp DEFAULT now(), isnew integer DEFAULT 1); /* build indexes */ /*create index idx_entries_dateadded on entries(dateadded asc);*/