coilardium

coilardium

I have added a unique constraint with the migration below

def up do
    create(unique_index(:tbl_wa_acc_details, [:passport_no, :acc_type_id], name: :unique_acc_with_passport)
  end

  def down do
    drop(index(:tbl_wa_acc_details, [:passport_no, :acc_type_id], name: :unique_acc_with_passport))
  end

and below is part of the schema

 |> multi_validate_format([:mobile, :country_code, :brn_code])
 |> unique_constraint([:passport_no, :acc_type_id], name: :unique_acc_with_passport, message: "already exists")

on insert am getting the error

no function clause matching in Ecto.Changeset.add_constraint/6

what Am I doing wrong??

Showing Posts 1 to 8

dimitarvp

dimitarvp

What is multi_validate_format returning exactly?

coilardium

coilardium OP

def multi_validate_format(changeset, keys) do

    Enum.reduce(keys, changeset, fn field, changeset ->

      validate_format(changeset, field, @number_regex, message: " can't be alphanumeric")

    end)

  end
dimitarvp

dimitarvp

So, can you put an IO.inspect() between these two and paste the output?

coilardium

coilardium OP

   ** (FunctionClauseError) no function clause matching in Ecto.Changeset.add_constraint/6
        (ecto 2.2.12) lib/ecto/changeset.ex:2272: Ecto.Changeset.add_constraint(#Ecto.Changeset<action: nil, changes: %{place_of_birth: "Lusaka", sex: "M", title: "MR", user_id: 1, cust: "INDIV_MI", date_of_birth: "1998-23-04", relation_manager: "JEFF", passport_is_dt: "2002-20-01", last_name: "Tembo", image_id: "202021121", location: "ZM", country_of_birth: "ZM", marital_status: "M", middle_name: "S", nationality: "ZM", tax_id: "44444555555", city: "lusaka province", cust_category: "INDIVIDUAL NONE RESIDENT", uuid: "57b2fab3-088a-4d16-9ad8-b91dd4f2a3e9", region: "LUSAK_PRV", age_range: "30_AND_40", mobile: "964352098", physical_add: "C/O PROBASE", id_type: "NRC", first_name: "Chanda", passport_no: "202021121", emp_status: "P", brn_code: "002", occupation: "ENGINEER", acc_type_id: 1, postal_add: "P.O. Box NM42, Stand 16806", institution: "ENERGY_SE", email: "coilardium@gmail.com"}, errors: [], data: #BulkAccountOpening.BankAccounts.WaAccount<>, valid?: true>, :unique, "unique_acc_with_nrc", :exact, [:id_no, :acc_type_id], {"already exists", []})
`
Sebb

Sebb

we need to see what gets passed into add_constraint().

like so:

iex(1)> 1 |> IO.inspect(label: "this will go into div()") |> div(0)
this will go into div(): 1
** (ArithmeticError) bad argument in arithmetic expression: div(1, 0)
    :erlang.div(1, 0)
al2o3cr

al2o3cr

Passing a list of fields to unique_constraint was added in Ecto 3.4.2 (#3276), your most recent error message says ecto 2.2.12. For that version, unique_constraint takes the name of the field (passport_no, likely in your case) that should get the changeset error when the constraint is violated.

dimitarvp

dimitarvp

I said between those two lines though. So the final code should be:

|> multi_validate_format([:mobile, :country_code, :brn_code])
|> IO.inspect(label: "after multi_validate_format")
|> unique_constraint([:passport_no, :acc_type_id], name: :unique_acc_with_passport, message: "already exists")

And then tell us what do you see on the console.

If you allow me one small piece of advice, being as brief (almost silent) as you are will not help you get answers on forums. People are more willing to help when you describe a problem in more details and with context (like library versions) and work with them when they are trying to help.

coilardium

coilardium OP

Thanks it was actually the version of ecto… Thanks for the help

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
kszambelanczyk
Hello! Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app. I creat...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
FlyingNoodle
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
psy-q
I’m trying to set up Emacs with elixir-ls via lsp-mode and credo via Flycheck. This should mostly be preconfigured as Flycheck picks up c...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews