blob: dee41c896b61c56bbe4197a162300e8353256245 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
class CreateAuthentications < ActiveRecord::Migration
def self.up
create_table :authentications do |t|
t.integer :user_id
t.string :provider
t.string :uid
t.timestamps
end
end
def self.down
drop_table :authentications
end
end
|