mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-25 02:06:10 +01:00
Add a user preference that can be used as a fallback for the sender authentication.
This commit is contained in:
parent
f40e3c0788
commit
ddcd468070
7 changed files with 21 additions and 4 deletions
|
|
@ -0,0 +1,5 @@
|
|||
class AddSmspermittedsendersToPreference < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
add_column :preferences, :sms_permitted_senders, :string
|
||||
end
|
||||
end
|
||||
|
|
@ -88,6 +88,7 @@ ActiveRecord::Schema.define(version: 2020_08_20_000743) do
|
|||
t.string "locale"
|
||||
t.integer "review_period", default: 14, null: false
|
||||
t.string "theme"
|
||||
t.string "sms_permitted_senders"
|
||||
t.index ["user_id"], name: "index_preferences_on_user_id"
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue