Files
nairobi/db/migrate/20170913130803_add_proposals_description_to_legislation_processes.rb
María Checa c811fd46f0 Proposals description migration and form
- Added to legislation processes a new attribute called `proposals_description`.
- Then created new views to show a form for the `@process` to edit this attribute **from in the proposals section**.
- Completed translations for new views.
2017-09-13 15:48:07 +02:00

6 lines
170 B
Ruby

class AddProposalsDescriptionToLegislationProcesses < ActiveRecord::Migration
def change
add_column :legislation_processes, :proposals_description, :text
end
end