class CreateVotes < ActiveRecord::Migration[7.2] def change create_table :votes do |t| t.string :secure_id t.string :title t.text :description t.datetime :expire_on t.timestamps null: false end end end