The backend for PuffPastry, a DAO platform.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

17 строки
479 B

  1. -- Your SQL goes here
  2. create table comments (
  3. id bigserial primary key,
  4. content text not null,
  5. parent bigint references comments (id) on delete cascade,
  6. telegram_handle text not null,
  7. issue_id int not null references issues (id),
  8. created_at timestamp
  9. );
  10. create table comment_votes (
  11. id bigserial primary key,
  12. positive boolean,
  13. comment_id bigint not null references comments(id),
  14. user_id bigint not null,
  15. unique (comment_id, user_id)
  16. )