2023-10-25 21:05:14 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-10-25 20:54:48 -07:00
|
|
|
class RenameAppendableToReaction < ActiveRecord::Migration[7.0]
|
|
|
|
def change
|
|
|
|
rename_table :appendables, :reactions
|
2023-10-25 21:05:14 -07:00
|
|
|
remove_column :reactions, :type, :string
|
2023-10-25 20:54:48 -07:00
|
|
|
end
|
|
|
|
end
|