mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 18:19:52 +01:00
8 lines
205 B
Ruby
8 lines
205 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RenameAppendableToReaction < ActiveRecord::Migration[7.0]
|
|
def change
|
|
rename_table :appendables, :reactions
|
|
remove_column :reactions, :type, :string
|
|
end
|
|
end
|