public
Description: Ruby: RPXNow.com user login/creation and view helpers Facebook, Twitter, Google, MSN, OpenID, MySpace, Yahoo -- All in One
Homepage:
Clone URL: git://github.com/grosser/rpx_now.git
rpx_now / MIGRATION
100644 10 lines (8 sloc) 0.182 kb
1
2
3
4
5
6
7
8
9
10
class AddIdentifierToUsers < ActiveRecord::Migration
  def self.up
    add_column :users, :identifier, :string
  end
 
  def self.down
    remove_column :users, :identifier
  end
end