feat: add allow_bots column to campaigns table

This commit is contained in:
Shivam Mishra
2025-11-05 17:17:27 +05:30
parent 72391f9c36
commit 617f18ff03
@@ -0,0 +1,5 @@
class AddAllowBotsToCampaigns < ActiveRecord::Migration[7.1]
def change
add_column :campaigns, :allow_bots, :boolean, default: false, null: false
end
end