6 lines
172 B
Ruby
6 lines
172 B
Ruby
class AddPolymorphicToVote < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :votes, :votable_type, :string
|
|
add_column :votes, :votable_id, :integer
|
|
end
|
|
end
|