Sha256: 79f6d36a2bfe1ccebdb4aa3c52221f017c19298544a0960182fa55655885c4af
Contents?: true
Size: 398 Bytes
Versions: 35
Compression:
Stored size: 398 Bytes
Contents
class CreateSocialAccount < ActiveRecord::Migration def up create_table :social_accounts, id: false do |t| t.uuid :id, primary_key: true t.string :social_id t.uuid :user_id t.column :provider, :string t.column :token, :string t.column :secret, :string end add_index :social_accounts, :id end def down drop_table :social_accounts end end
Version data entries
35 entries across 35 versions & 1 rubygems