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.
 
 
 
 

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