init commit
Some checks failed
Build and Publish / build-release (push) Failing after 1s

This commit is contained in:
2026-04-15 16:20:22 -05:00
parent 072dbf6e66
commit b1b1c21e4e
28 changed files with 822 additions and 194 deletions

View File

@@ -10,7 +10,14 @@ defmodule CustomerService.Repo.Migrations.AddCustomerTable do
add :gender, :string
add :email, :string
add :phone, :string
add :document_id, :string
add :customer_type, :string, null: false, default: "individual"
add :legal_name, :string
add :commercial_name, :string
add :ruc, :string
add :legal_rep_name, :string
add :legal_rep_document_id, :string
add :address, :string
timestamps()
end