class CreateVotes < ActiveRecord::Migration[7.0] def change create_table :votes do |t| t.references :votable, polymorphic: true t.integer :upvote t.string :ip t.timestamps end end end