Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 

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