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.

24 lines
719 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_media_endpoint TEXT,
  8. micropub_access_token TEXT,
  9. micropub_scope TEXT,
  10. micropub_response TEXT,
  11. micropub_slug_field TEXT default 'mp-slug',
  12. micropub_success INTEGER default 0,
  13. date_created datetime,
  14. last_login datetime,
  15. last_micropub_response TEXT,
  16. last_micropub_response_date datetime,
  17. location_enabled INTEGER NOT NULL default 0,
  18. syndication_targets TEXT,
  19. facebook_access_token TEXT,
  20. twitter_access_token TEXT,
  21. twitter_token_secret TEXT,
  22. twitter_username TEXT,
  23. instagram_access_token TEXT,
  24. email_username TEXT
  25. );