5 lines
136 B
Ruby
5 lines
136 B
Ruby
class AddCommitteeReviewToEvents < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :events, :committee_review, :text
|
|
end
|
|
end
|