mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 11:44:02 +00:00
8 lines
220 B
Ruby
8 lines
220 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddVotingDatesToProgram < ActiveRecord::Migration
|
|
def change
|
|
add_column :programs, :voting_start_date, :datetime
|
|
add_column :programs, :voting_end_date, :datetime
|
|
end
|
|
end
|