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
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
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 have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
I think I’ve found a small improvement I could contribute to <%= web_namespace %>.CoreComponents (installer/templates/phx_web/compo...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
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
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #elixirconf-us
- #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)
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.