feat: Add contact_type attribute to contact model (#8768)

This commit is contained in:
Muhsin Keloth
2024-01-24 12:26:47 +05:30
committed by GitHub
parent 232369cd5c
commit 143299f138
3 changed files with 10 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class AddContactTypeToContacts < ActiveRecord::Migration[7.0]
def change
add_column :contacts, :contact_type, :integer, default: 0
end
end