canvas-lms/db/migrate/20120531221324_add_avatar_i...

12 lines
238 B
Ruby

class AddAvatarImageToGroups < ActiveRecord::Migration
tag :predeploy
def self.up
add_column :groups, :avatar_attachment_id, :integer, :limit => 8
end
def self.down
remove_column :groups, :avatar_attachment_id
end
end