collab/db/migrate/20100305013414_add_shorname_to_users.rb

10 lines
180 B
Ruby
Raw Permalink Normal View History

2010-03-05 06:48:00 +00:00
class AddShornameToUsers < ActiveRecord::Migration
def self.up
add_column :users, :short_name, :string
end
def self.down
remove_column :users, :short_name
end
end