The backend for PuffPastry, a DAO platform.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

8 line
188 B

  1. -- Your SQL goes here
  2. create table issues (
  3. id serial primary key,
  4. title text not null,
  5. paragraph_count smallint,
  6. telegram_handle text not null,
  7. created_at timestamp
  8. );