feat: Add attributes location and country_code to Contact model (#8803)
feat: Add attributes location and country_code to Contact model
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
class AddLocationAndCountryCodeToContacts < ActiveRecord::Migration[7.0]
|
||||
def change
|
||||
add_column :contacts, :location, :string, default: ''
|
||||
add_column :contacts, :country_code, :string, default: ''
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user