mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
10 lines
199 B
Ruby
10 lines
199 B
Ruby
class AddUiSettingsToUsers < ActiveRecord::Migration[6.0]
|
|
def up
|
|
add_column :users, :ui_settings, :jsonb, default: {}
|
|
end
|
|
|
|
def down
|
|
remove_column :users, :ui_settings, :jsonb
|
|
end
|
|
end
|