2021-12-13 00:29:47 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class DropTokenFromEmailTokens < ActiveRecord::Migration[6.1]
|
2024-10-15 22:09:07 -04:00
|
|
|
DROPPED_COLUMNS = { email_tokens: %i[token] }
|
2021-12-13 00:29:47 -05:00
|
|
|
|
|
|
|
def up
|
|
|
|
DROPPED_COLUMNS.each { |table, columns| Migration::ColumnDropper.execute_drop(table, columns) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
raise ActiveRecord::IrreversibleMigration
|
|
|
|
end
|
|
|
|
end
|