Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 

12 linhas
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. )