The backend for PuffPastry, a DAO platform.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
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. )