1 2 3 4 5 6 7 8
class AddLikeFieldsToVote < ActiveRecord::Migration[7.1] def change change_table :votes do |t| t.string :liker_url t.string :liker_name end end end