discourse/app/models/concerns/has_deprecated_columns.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
804 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module HasDeprecatedColumns
extend ActiveSupport::Concern
class_methods do
def deprecate_column(column_name, drop_from:, raise_error: false, message: nil)
if Gem::Version.new(Discourse::VERSION::STRING) >= Gem::Version.new(drop_from)
self.ignored_columns = self.ignored_columns.dup << column_name.to_s
else
message = message.presence || "column `#{column_name}` is deprecated"
define_method(column_name) do
Discourse.deprecate(message, drop_from: drop_from, raise_error: raise_error)
super()
end
define_method("#{column_name}=") do |value|
Discourse.deprecate(message, drop_from: drop_from, raise_error: raise_error)
super(value)
end
end
end
end
end