Chatwoot/db/migrate/20210827120929_add_custom_attributes_to_user.rb

6 lines
149 B
Ruby
Raw Permalink Normal View History

class AddCustomAttributesToUser < ActiveRecord::Migration[6.1]
def change
add_column :users, :custom_attributes, :jsonb, default: {}
end
end