mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
14 lines
248 B
Ruby
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
|