Skip to content

Commit

Permalink
Added migration, forgot in last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
konklone committed Apr 28, 2010
1 parent b6a7423 commit 8e42c9a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions migrations/04_add_me_url_to_users.rb
@@ -0,0 +1,12 @@
class AddMeUrlToUsers < ActiveRecord::Migration

def self.up
add_column :users, :me_url, :string
add_index :users, :me_url
end

def self.down
remove_column :users, :me_url
end

end

0 comments on commit 8e42c9a

Please sign in to comment.