Files
openproject/modules/backlogs/db/migrate/20260420160236_remove_version_settings.rb
2026-04-29 11:29:35 +02:00

14 lines
248 B
Ruby

# frozen_string_literal: true
class RemoveVersionSettings < ActiveRecord::Migration[8.1]
def up
drop_table :version_settings
end
def down
require_relative "tables/version_settings"
Tables::VersionSettings.table(self)
end
end