mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 18:22:53 +00:00
6 lines
179 B
Ruby
6 lines
179 B
Ruby
class AddFeatureSettingToWebsiteInbox < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :channel_web_widgets, :feature_flags, :integer, default: 3, null: false
|
|
end
|
|
end
|