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

12 lines
188 B
Ruby

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