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.

21 lines
618 B

  1. CREATE TABLE users (
  2. id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
  3. url TEXT,
  4. authorization_endpoint TEXT,
  5. token_endpoint TEXT,
  6. micropub_endpoint TEXT,
  7. micropub_access_token TEXT,
  8. micropub_scope TEXT,
  9. micropub_response TEXT,
  10. micropub_success INTEGER default 0,
  11. date_created datetime,
  12. last_login datetime,
  13. last_micropub_response TEXT,
  14. last_micropub_response_date datetime,
  15. location_enabled INTEGER NOT NULL default 0,
  16. syndication_targets TEXT,
  17. facebook_access_token TEXT,
  18. twitter_access_token TEXT,
  19. twitter_token_secret TEXT,
  20. twitter_username TEXT,
  21. instagram_access_token TEXT
  22. );