Sha256: 6507a94146f9811e61b76ddf550e1d52902b16b878a05f9b2aa1bcf325e71747
Contents?: true
Size: 289 Bytes
Versions: 54
Compression:
Stored size: 289 Bytes
Contents
class CreateAuthentications < ActiveRecord::Migration def self.up create_table :authentications do |t| t.integer :user_id, :null => false t.string :provider, :uid, :null => false t.timestamps end end def self.down drop_table :authentications end end
Version data entries
54 entries across 33 versions & 1 rubygems