Add a user preference that can be used as a fallback for the sender authentication.

This commit is contained in:
Jyri-Petteri Paloposki 2022-02-22 18:46:14 +02:00
parent f40e3c0788
commit ddcd468070
7 changed files with 21 additions and 4 deletions

View file

@ -0,0 +1,5 @@
class AddSmspermittedsendersToPreference < ActiveRecord::Migration[5.2]
def change
add_column :preferences, :sms_permitted_senders, :string
end
end