Created
June 26, 2014 08:10
-
-
Save ozw-sei/7929429a15ab47fb9064 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE `google_users` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `user_id` varchar(30) NOT NULL, | |
| `email` varchar(255) NOT NULL, | |
| `name` varchar(255) NOT NULL, | |
| `picture` varchar(255) NOT NULL, | |
| `access_token` varchar(255) NOT NULL, | |
| `created` datetime NOT NULL, | |
| `updated` datetime NOT NULL, | |
| PRIMARY KEY (`id`), | |
| UNIQUE KEY `user_id` (`user_id`) | |
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment