chatwoot-develop/db/migrate/20250207040150_add_meta_to_attachment.rb

6 lines
136 B
Ruby
Executable File

class AddMetaToAttachment < ActiveRecord::Migration[7.0]
def change
add_column :attachments, :meta, :jsonb, default: {}
end
end