You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 regels
361 B

  1. -- Comments schema
  2. -- Postgres dialect
  3. create table comments (
  4. id serial primary key,
  5. cid text not null,
  6. is_current bool not null default true,
  7. previous_cid text,
  8. proposal_id integer not null references proposals(id) on delete cascade,
  9. created_at timestamptz not null default now(),
  10. updated_at timestamptz not null default now()
  11. );