loon

loon

Hi awesome people,

I have a User and Role table. Each role has many users.

Here is the table structure in ecto migration file.

    create table(:business_user, primary_key: false) do
      add :business_id, references(:businesses, on_delete: :delete_all), null: false
      add :user_id, references(:users, on_delete: :delete_all), null: false
      add :role_id, references(:role, on_delete: :delete_all), null: false

      timestamps()
    end

I know on_delete: :delete_all) will delete all related business_users if the role is deleted. But how to i protect this role from accidentally deleted?

Because i came from Django, it has on_delete=PROTECT to protect the role from deleted and error raised. I am new to ECTO, i not sure if there is anything I am missing here :slight_smile:

Showing Posts 1 to 10

egze

egze

I don’t think that django on_delete=Protect would protect the roles. It prevents referenced objects from being deleted.

thomas.fortes

thomas.fortes

Isn’t django PROTECT an equivalent of SQL RESTRICT?

It’s been a while since I used django, but if so, on_delete: :restrict should do what you want.

c4710n

c4710n

For you case, you should use on_delete: :restrict or on_delete: :nothing.

Why?

In short, read h Ecto.Migration.references.

In detail:

  • :on_delete option specifies the behavior of referencing rows when a referenced row is deleted.
  • When you call add :role_id, references(:role, on_delete: :delete_all), null: false, we say that business_user references role:
    • rows in business_user are the referencing rows.
    • rows in role are the referenced rows.
  • :on_delete has 4 possible values:
    • :delete_all
      • PostgreSQL clause: ON DELETE CASCADE
      • description: The referencing rows will be deleted.
    • :nilify_all
      • PostgreSQL clause: ON DELETE SET NULL
      • description: The foreign key of referencing rows will be set as NULL.
    • :restrict
      • PostgreSQL clause: ON DELETE RESTRICT
      • description: Prevent deletion of a referenced row.
    • :nothing (default behavior) ::
      • PostgreSQL clause: NO ACTION
      • description: Do nothing. (It will cause an error when checking constrains.)

You can try to read the book - Programming Ecto, it will clear all you confusions and give you new insights.

c4710n

c4710n

As supplementary:

  • above code just do data consistency, it is not helpful for user experience —— You shouldn’t just popup a model, and tell users “database error occurs”.
  • try to use Ecto.Changeset.no_assoc_constraint before deleting any referenced rows, :on_delete is just the last line of defense for data consistency.
loon

loon OP

I am not very sure if django PROTECT is = SQL RESTRICT :joy:

didn’t know there is such :restrict, cannot find this in the ecto docs. anyway thanks.

read the detailed explanation above, i think :restrict is the one I am looking for :slight_smile:

loon

loon OP

thanks for the datailed explanation! one question for the :nothing, does it delete any data? example, if i delete a role, the associated business_user data and the role data remained and raise error?

thomas.fortes

thomas.fortes

It seems like PROTECT is a bit more strict than the SQL RESTRICT, but it is also purely application code, on_delete on django models is not a db constraint.

And the :restrict is in the Ecto.Migration docs.

Unless you have a good reason or is handling it at the application level, it is nor recommended to use :nothing for references because it will make the data in the db inconsistent, pointing to role_ids that do not exist anymore, if you want to just remove all the references from the business_user you could use :nilify_all, it will not prevent the deletion of a role, but when the role is deleted all references pointing to it will be set to NULL.

loon

loon OP

yes it is not db constraint, django side only.

no wonder it is very hard for me to look for the full info, i was looking at Ecto v3.14.0 — Documentation and the docs has room for improvement.

Noted, I think i have read it somewhere but cannot find the doc. I will just go with :restrict then. Thanks for the good info!

c4710n

c4710n

It will trigger database constraint error, and won’t delete any data.

loon

loon OP

Thanks, again didn’t know about Ecto.Changeset.no_assoc_constraint. will do!

and

will do!

Where Next? Top

Trending in Questions Top

Blokh
Hey guys, I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly Do you guys have any suggestions what is the best prac...
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
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & 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