The backend for PuffPastry, a DAO platform.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

11 строки
237 B

  1. -- Your SQL goes here
  2. create table sessions (
  3. id bigserial primary key,
  4. session_id text not null,
  5. user_id bigint not null,
  6. auth_date bigint,
  7. username text,
  8. first_name text,
  9. last_name text,
  10. photo_url text
  11. )