Sha256: e38a7853a1f36a99fca38c5d3a98586b231409105b1e60641c65a6c3afe1ea3b

Contents?: true

Size: 300 Bytes

Versions: 2

Compression:

Stored size: 300 Bytes

Contents

class CreateUserAuthentications < ActiveRecord::Migration
  def self.up
    create_table :user_authentications do |t|
      t.integer :user_id
      t.string :provider
      t.string :uid
      t.string :nickname
      t.timestamps
    end
  end

  def self.down
    drop_table :table_name
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
spree_social-1.1 db/migrate/20101117212408_create_user_authentications.rb
spree_social-1.0.2 db/migrate/20101117212408_create_user_authentications.rb