script
In the mix ecto.migrate docs there is a command line option --migrations-path. I tried it like this in my project
mix ecto.migrate --migrations-path "priv/repo/migrations". But it returns error
** (Mix) Could not invoke task "ecto.migrate": 1 error found!
--migrations-path : Unknown option
Am I doing something wrong?
Thanks
Trending in Questions
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
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
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
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #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
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
NobbZ
What is your version of
ecto_sqlaccording to yourmix.lock?First mention of that option is in the docs of 3.1.3.
script
ecto_sql: 3.1.1
NobbZ
Then you probably need to unlock and update your version of
ecto_sqlscript
Thanks for pointing this out . It works . Now I am trying to run migrations from another umbrella app . like this:
But it gives me this error:
I am following this thread:
I have single repo and migrations in two different umbrella apps.
https://forum.elixirforum.com/t/how-to-run-migrations-of-another-app-from-main-app/23444/10
Thanks.
NobbZ
Relative to where? And where in the filesystem do you run that command? Please use proper pathes here, not any obfuscations. Perhaps replace appnames with stubs, but make sure the regular umbrella structure is preserved when doing so, that we can understand what you are actually doing.
script
I run this command inside the umbrella app which contains the Repo. This is the relative path:
All the umbrella apps are inside the app directory. If i Provide the absolute path
volumes/projects/apps/al/priv/repo/migrationsit saysalready up. But no migrations will run.I don’t have any config settings in the
alapp.script
It seems to be working after dropping the database and creating again and then running the mix migrate command for the second app which doesn’t have a repo.
But it won’t work if i run the main app migrations first and then run the migrations from the other app(which don’t have repo). It returns
already_up.NobbZ
So you are running from inside an app, but specifiying the path relative to the umbrella project? That shouldn’t work…
Either specify a path relative to your current working dir or an absolute one.
script
Yes its working for absolute path but only if run the migrations from the second app first(which doesn’t have repo). But it gives me
Already upconsole message if I run this after the main app migrations(which is what I need).Phillipp
How are the migrations of both apps named? And can you successfully migrate the main app after the second app?
I guess the migrations table holds the name of the migration (either module or filename, I don’t know right now) and if the migrations in both apps are named the same way it thinks they are already migrated.
I haven’t worked with Elixir and a database in a long time, so this is just a wild guess.