vedia/db/migrate/20260420210736_add_opened_at_to_vote.rb
2026-04-21 22:37:25 -05:00

5 lines
123 B
Ruby

class AddOpenedAtToVote < ActiveRecord::Migration[7.2]
def change
add_column :votes, :opened_at, :datetime
end
end