You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
321 B
15 lines
321 B
11 years ago
|
class CreateAuthentications < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :authentications do |t|
|
||
|
t.references :user, index: true
|
||
|
t.string :provider, null: false
|
||
|
t.string :uid, null: false
|
||
|
t.string :token
|
||
|
t.string :secret
|
||
|
t.string :name
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|