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

12 行
562 B

  1. create table proposals (
  2. id serial primary key,
  3. name text not null,
  4. cid text not null,
  5. summary text,
  6. creator text not null,
  7. is_current boolean not null, -- true for latest/current version
  8. previous_cid text, -- the CID of the previous version, if any
  9. created_at timestamp default now(),
  10. updated_at timestamp
  11. )