Skip to content

Instantly share code, notes, and snippets.

@c-taka
Created October 2, 2013 17:36
Show Gist options
  • Select an option

  • Save c-taka/6797408 to your computer and use it in GitHub Desktop.

Select an option

Save c-taka/6797408 to your computer and use it in GitHub Desktop.
FacebookでログインするWebサービスを作ろう
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