mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 19:11:13 +00:00
Constants should always be only assigned once. The logical OR assignment of a constant is a relic of the past before we used zeitwerk for autoloading and had bugs where a file could be loaded twice resulting in constant redefinition warnings.
14 lines
340 B
Ruby
14 lines
340 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DropDurationColumnFromTopicTimers < ActiveRecord::Migration[6.1]
|
|
DROPPED_COLUMNS = { topic_timers: %i[duration] }
|
|
|
|
def up
|
|
DROPPED_COLUMNS.each { |table, columns| Migration::ColumnDropper.execute_drop(table, columns) }
|
|
end
|
|
|
|
def down
|
|
add_column :topic_timers, :duration, :string
|
|
end
|
|
end
|