Created
October 2, 2013 17:36
-
-
Save c-taka/6797408 to your computer and use it in GitHub Desktop.
FacebookでログインするWebサービスを作ろう
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 users ( | |
| id int not null auto_increment primary key, | |
| facebook_user_id varchar(30) unique, | |
| facebook_name varchar(255), | |
| facebook_picture varchar(255), | |
| facebook_access_token varchar(255), | |
| created datetime, | |
| modified datetime | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment