The backend for PuffPastry, a DAO platform.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

7 wiersze
178 B

  1. -- Your SQL goes here
  2. create table paragraphs (
  3. id bigserial primary key,
  4. content text not null,
  5. index int not null,
  6. post_id int not null references issues(id)
  7. );