Need differentiate between an action in a published proposal and an action in a draft proposal
6 lines
176 B
Ruby
6 lines
176 B
Ruby
class AddPublishedProposalToDashboardActions < ActiveRecord::Migration
|
|
def change
|
|
add_column :dashboard_actions, :published_proposal, :boolean, default: :false
|
|
end
|
|
end
|