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 ![]()
Trending in Questions
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
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
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
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
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
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
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
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
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
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
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
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
egze
I don’t think that django on_delete=Protect would protect the roles. It prevents referenced objects from being deleted.
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: :restrictshould do what you want.c4710n
For you case, you should use
on_delete: :restrictoron_delete: :nothing.Why?
In short, read
h Ecto.Migration.references.In detail:
:on_deleteoption specifies the behavior of referencing rows when a referenced row is deleted.add :role_id, references(:role, on_delete: :delete_all), null: false, we say thatbusiness_userreferencesrole:business_userare the referencing rows.roleare the referenced rows.:on_deletehas 4 possible values::delete_allON DELETE CASCADE:nilify_allON DELETE SET NULLNULL.:restrictON DELETE RESTRICT:nothing(default behavior) ::NO ACTIONc4710n
As supplementary:
Ecto.Changeset.no_assoc_constraintbefore deleting any referenced rows,:on_deleteis just the last line of defense for data consistency.loon
I am not very sure if django PROTECT is = SQL RESTRICT
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
loon
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
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
:restrictis 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
:nothingfor 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 toNULL.loon
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
It will trigger database constraint error, and won’t delete any data.
loon
Thanks, again didn’t know about
Ecto.Changeset.no_assoc_constraint. will do!and
will do!