The backend for PuffPastry, a DAO platform.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

8 rader
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. );