collab/db/migrate/20100305013414_add_shorname_to_users.rb
2010-03-05 01:48:00 -05:00

10 lines
180 B
Ruby

class AddShornameToUsers < ActiveRecord::Migration
def self.up
add_column :users, :short_name, :string
end
def self.down
remove_column :users, :short_name
end
end