160a6fc6cf
feat: Save UI state in the database
9 lines
199 B
Ruby
9 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
|