- Update Schema Information headers for AssignmentPolicy, Campaign, Notification - Reflect schema change for Campaign.template_params (not null with default) - Keep annotations consistent to avoid drift
6 lines
141 B
Ruby
6 lines
141 B
Ruby
class AddTemplateParamsToCampaigns < ActiveRecord::Migration[7.1]
|
|
def change
|
|
add_column :campaigns, :template_params, :jsonb
|
|
end
|
|
end
|