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
937 B

  1. CREATE TABLE `users` (
  2. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  3. `url` varchar(255) DEFAULT NULL,
  4. `authorization_endpoint` varchar(255) DEFAULT NULL,
  5. `token_endpoint` varchar(255) DEFAULT NULL,
  6. `micropub_endpoint` varchar(255) DEFAULT NULL,
  7. `micropub_access_token` text,
  8. `micropub_scope` varchar(255) DEFAULT NULL,
  9. `micropub_response` text,
  10. `micropub_success` tinyint(4) DEFAULT '0',
  11. `date_created` datetime DEFAULT NULL,
  12. `last_login` datetime DEFAULT NULL,
  13. `last_micropub_response` text,
  14. `last_micropub_response_date` datetime DEFAULT NULL,
  15. `location_enabled` tinyint(4) 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` varchar(255) DEFAULT NULL,
  21. `instagram_access_token` text,
  22. `email_username` varchar(255) DEFAULT NULL,
  23. PRIMARY KEY (`id`)
  24. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;