The backend for PuffPastry, a DAO platform.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

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