The backend for PuffPastry, a DAO platform.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

up.sql 188 B

2ヶ月前
12345678
  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. );