blob: b99dc3e2b4bb9d15a55e9eff5168967c8be7aba2 (
plain)
1
2
3
4
5
6
7
8
|
class AddFromFieldToTenant < ActiveRecord::Migration
def change
add_column :tenants, :from_field_voicemail_email, :string
add_column :tenants, :from_field_pin_change_email, :string
end
end
|