ad83d1bb71
- Platform APIs to add and update custom attributes to users - Platform APIs to delete accounts - Platform APIs to delete users
5 lines
149 B
Ruby
5 lines
149 B
Ruby
class AddCustomAttributesToUser < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :users, :custom_attributes, :jsonb, default: {}
|
|
end
|
|
end
|