vedia/db/migrate/20250328014902_add_state_to_votes.rb
2025-04-06 17:05:07 -06:00

5 lines
115 B
Ruby

class AddStateToVotes < ActiveRecord::Migration[7.2]
def change
add_column :votes, :state, :string
end
end