Files
nairobi/db/migrate/20181108103111_add_allow_custom_content_to_headings.rb
2018-11-27 09:37:35 -05:00

6 lines
168 B
Ruby

class AddAllowCustomContentToHeadings < ActiveRecord::Migration
def change
add_column :budget_headings, :allow_custom_content, :boolean, default: false
end
end