canvas-lms/db/migrate/20120514215405_add_bio_to_u...

12 lines
183 B
Ruby

class AddBioToUser < ActiveRecord::Migration
tag :predeploy
def self.up
add_column :users, :bio, :text
end
def self.down
remove_column :users, :bio, :text
end
end