Query

Create table

CREATE TABLE label (
  row_id integer primary key autoincrement,
  project integer not null default 0,
  id varchar(100) not null default '',
  description not null default '',
  color not null default '',
  unique(project,
  id)
)