The backend for PuffPastry, a DAO platform.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

8 satır
213 B

  1. -- Your SQL goes here
  2. create table issue_votes (
  3. id bigserial primary key,
  4. positive boolean,
  5. issue_id int not null references issues (id),
  6. user_id bigint not null,
  7. unique (issue_id, user_id)
  8. );