您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

13 行
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. );