script

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

Showing Posts 1 to 10

NobbZ

NobbZ

What is your version of ecto_sql according to your mix.lock?

First mention of that option is in the docs of 3.1.3.

script

script OP

ecto_sql: 3.1.1

NobbZ

NobbZ

Then you probably need to unlock and update your version of ecto_sql

script

script OP

Thanks for pointing this out . It works . Now I am trying to run migrations from another umbrella app . like this:

                     mix ecto.migrate --migrations-path  "relative_path_to_the umbrella_app_migration_folder"

But it gives me this error:

    ** (Mix) Could not find migrations directory "apps/umbrella_app/priv/repo/migrations"
     for repo App.Repo.

    This may be because you are in a new project and the
    migration directory has not been created yet. Creating an
    empty directory at the path above will fix this error.

    If you expected existing migrations to be found, please
    make sure your repository has been properly configured
    and the configured path exists.

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

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

script OP

I run this command inside the umbrella app which contains the Repo. This is the relative path:

        mix ecto.migrate --migrations-path  "apps/al/priv/repo/migrations"

All the umbrella apps are inside the app directory. If i Provide the absolute path volumes/projects/apps/al/priv/repo/migrations it says already up. But no migrations will run.

I don’t have any config settings in the al app.

script

script OP

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

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

script OP

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 up console message if I run this after the main app migrations(which is what I need).

Phillipp

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.

Where Next? Top

Trending in Questions Top

RSP87
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
nseaSeb
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
kpanic
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
asweet-confluent
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apz
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 Top

GenericJam
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
JesseHerrick
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
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
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
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews