The backend for PuffPastry, a DAO platform.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

2 månader sedan
1234567891011
  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. )