implement openID authentication
This commit is contained in:
parent
37e026a9fb
commit
600adde6ba
23 changed files with 408 additions and 14 deletions
12
db/migrate/20140603092041_create_openids.rb
Normal file
12
db/migrate/20140603092041_create_openids.rb
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
class CreateOpenids< ActiveRecord::Migration
|
||||
def change
|
||||
create_table :openids do |t|
|
||||
t.string :provider
|
||||
t.string :email
|
||||
t.string :uid
|
||||
t.integer :user_id
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue