The backend for PuffPastry, a DAO platform.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

11 líneas
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. )