Sha256: 5b61ad3835a69a21ee4a4e7c0e45fd6161df51712280d74ac91dd8f872f7f08e
Contents?: true
Size: 337 Bytes
Versions: 6
Compression:
Stored size: 337 Bytes
Contents
class CreateSocialAccount < ActiveRecord::Migration def up create_table :social_accounts do |t| t.column :social_id, :integer t.column :user_id, :integer t.column :provider, :string t.column :token, :string t.column :secret, :string end end def down drop_table :social_accounts end end
Version data entries
6 entries across 6 versions & 1 rubygems