mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
10 lines
236 B
Ruby
10 lines
236 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddSettingsToUsers < ActiveRecord::Migration[7.1]
|
|
def change
|
|
add_column :users, :settings, :jsonb, default: {
|
|
meters_between_routes: 500,
|
|
minutes_between_routes: 60
|
|
}
|
|
end
|
|
end
|