You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/db/migrate/20121026003537_populate_enu...

10 lines
182 B

class PopulateEnumerationsPositionName < ActiveRecord::Migration
def up
IssuePriority.compute_position_names
end
def down
IssuePriority.clear_position_names
end
end