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.

28 lines
818 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_syndicate_field TEXT default 'mp-syndicate-to',
  13. micropub_success INTEGER default 0,
  14. date_created datetime,
  15. last_login datetime,
  16. last_micropub_response TEXT,
  17. last_micropub_response_date datetime,
  18. location_enabled INTEGER NOT NULL default 0,
  19. syndication_targets TEXT,
  20. channels TEXT,
  21. twitter_access_token TEXT,
  22. twitter_token_secret TEXT,
  23. twitter_username TEXT,
  24. email_username TEXT,
  25. default_timezone TEXT,
  26. supported_post_types TEXT,
  27. supported_visibility TEXT
  28. );