Files
nairobi/db/migrate/20190108133246_add_published_proposal_to_dashboard_actions.rb
taitus 3048578c53 Add new boolean field published_proposal to Dashboard::Action
Need differentiate between an action in a published proposal and an action in a draft proposal
2019-02-02 17:45:55 +01:00

6 lines
176 B
Ruby

class AddPublishedProposalToDashboardActions < ActiveRecord::Migration
def change
add_column :dashboard_actions, :published_proposal, :boolean, default: :false
end
end