5 lines
115 B
Ruby
5 lines
115 B
Ruby
class AddStateToVotes < ActiveRecord::Migration[7.2]
|
|
def change
|
|
add_column :votes, :state, :string
|
|
end
|
|
end
|