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.
|
- -- Your SQL goes here
- create table paragraphs (
- id bigserial primary key,
- content text not null,
- index int not null,
- post_id int not null references issues(id)
- );
|