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

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