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.
 
 
 
 
 

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