How to change column to nullable with modify in Ecto migration

Article autor
September 9, 2025
How to change column to nullable with modify in Ecto migration
Elixir Newsletter
Join Elixir newsletter

Subscribe to receive Elixir news to your inbox every two weeks.

Oops! Something went wrong while submitting the form.
Elixir Newsletter
Expand your skills

Download free e-books, watch expert tech talks, and explore open-source projects. Everything you need to grow as a developer - completely free.

Table of contents

Sooner or later you'll have to change the null constraint in one of your DB relations. How to do it easily in Ecto?

Although I came across many different examples where a raw SQL has been used to perform this type of operation in Ecto, it's actually super easy to do it with modify/3 function.

Let's assume that your migration looks like this:

create table(:blog_posts) do
  add :title, :string, null: false
  add :intro, :text, null: false
  add :body, :text, null: false
  add :category_id, references(:blog_categories, on_delete: :delete_all)
end

... and at some point, you realize that you don't want to force passing the intro column value.

You can change it easily this way:

alter table(:blog_posts) do
  modify :intro, :text, null: true, from: :text
end

It's also worth mentioning that it's possible to modify foreign keys with modify:

alter table(:blog_posts) do
  modify :category_id,
    references(:blog_categories, on_delete: :delete_all),
    null: false,
    from: references(:blog_categories, on_delete: :delete_all)
end

Related posts

Dive deeper into this topic with these related posts

No items found.

You might also like

Discover more content from this category

Implicit try in Elixir

In the world of Elixir programming, there are numerous features and syntactic constructs that contribute to the language's elegance and expressiveness. One such hidden gem is the concept of "implicit try".

How to copy and paste within a terminal in macOS or Linux?

Sometimes we want to store some piece of information while using a terminal, for example, a result of an executed command. We usually save it into some temporary file which is going to be deleted after all. There’s a better way.

How to convert string to camel and snake case in Elixir

Sooner or later you may need to convert a string in Elixir to a camel or snake case. With Macro module (available in Elixir without extra dependency) it's super easy.