- 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.
6 lines
170 B
Ruby
6 lines
170 B
Ruby
class AddProposalsDescriptionToLegislationProcesses < ActiveRecord::Migration
|
|
def change
|
|
add_column :legislation_processes, :proposals_description, :text
|
|
end
|
|
end
|