business contact validation + tests

This commit is contained in:
oleghasjanov 2024-09-24 15:04:02 +03:00
parent 4ed6e90893
commit 6ff5e55a24
23 changed files with 962 additions and 2 deletions

View file

@ -0,0 +1,5 @@
class AddCheckedCompanyAtToContacts < ActiveRecord::Migration[6.1]
def change
add_column :contacts, :checked_company_at, :datetime
end
end

View file

@ -0,0 +1,5 @@
class AddCompanyRegisterStatusToContacts < ActiveRecord::Migration[6.1]
def change
add_column :contacts, :company_register_status, :string
end
end