cdd385b269
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
5 lines
156 B
Ruby
5 lines
156 B
Ruby
class AddCustomAttributesToContacts < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :contacts, :custom_attributes, :jsonb, default: {}
|
|
end
|
|
end
|