mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 10:12:34 +00:00
8 lines
241 B
Ruby
8 lines
241 B
Ruby
class RemoveCarrierWaveAttributes < ActiveRecord::Migration[6.0]
|
|
def change
|
|
remove_column :contacts, :avatar, :string
|
|
remove_column :channel_facebook_pages, :avatar, :string
|
|
remove_column :attachments, :file, :string
|
|
end
|
|
end
|