class CreateVotes < ActiveRecord::Migration[8.0] def change create_table :votes do |t| t.references :user, null: false, foreign_key: true t.string :votable=references{polymorphic} t.integer :direction t.timestamps end end end