Skip to content

Instantly share code, notes, and snippets.

@ozw-sei
Created June 26, 2014 08:10
Show Gist options
  • Select an option

  • Save ozw-sei/7929429a15ab47fb9064 to your computer and use it in GitHub Desktop.

Select an option

Save ozw-sei/7929429a15ab47fb9064 to your computer and use it in GitHub Desktop.
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