Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 

12 řádky
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. )