mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
6 lines
164 B
Ruby
6 lines
164 B
Ruby
class AddCustomSenderNameToggle < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :inboxes, :sender_name_type, :integer, default: 0, null: false
|
|
end
|
|
end
|