OpenProject is the leading open source project management software.
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.
 
 
 
 
 
 
openproject/db/migrate/20200820140526_remove_summa...

8 lines
262 B

class RemoveSummableSetting < ActiveRecord::Migration[6.0]
# Do not need a down migration as we simply fall back on the default settings
def up
execute <<~SQL
DELETE FROM settings WHERE name = 'work_package_list_summable_columns'
SQL
end
end