Redmine/db/migrate/20090323224724_add_type_to_...

10 lines
185 B
Ruby

class AddTypeToEnumerations < ActiveRecord::Migration
def self.up
add_column :enumerations, :type, :string
end
def self.down
remove_column :enumerations, :type
end
end