Giter Club home page Giter Club logo

Comments (4)

jwoertink avatar jwoertink commented on September 13, 2024 1

I really think the better option is to use env() to specify when you want to control a specific task.

# does not run migration
lucky dev

# runs migration
MIGRATE=true lucky dev

from avram.

zw963 avatar zw963 commented on September 13, 2024

Hi, i guess why this issue happen.

I added following code into my config/database.yml

if !LuckyEnv.task?
  Avram::Migrator::Runner.new.run_pending_migrations
end

I thought it should never run when start server use lucky dev, because i thought
lucky env is a task, right? but this not true obviously.

so, the migration file get migrate immediately when i generating it use bin/lucky.gen.migration ...

So, the new issue is, how to check current server is running from lucky dev? i consider only check $LUCKY_DEV == development is not enough for my case, i just don't want lucky dev run my migration, but, it should be running if i run shards build or lucky db.migrate.one.

Thanks

from avram.

jwoertink avatar jwoertink commented on September 13, 2024

Maybe you can use a compile env for this case?

# config/database.cr
{% if env("MIGRATE") %}
Avram::Migrator::Runner.new.run_pending_migrations
{% end %}

MIGRATE=true lucky db.migrate.one

from avram.

zw963 avatar zw963 commented on September 13, 2024

Maybe you can use a compile env for this case?

# config/database.cr
{% if env("MIGRATE") %}
Avram::Migrator::Runner.new.run_pending_migrations
{% end %}

MIGRATE=true lucky db.migrate.one

I consider this is not correct,, whatever whether env MIGRATE was set, db.migrate.one always run pending migration.

For now, i change to run pending migrate only in production

if !LuckyEnv.task? && LuckyEnv.production?
  Avram::Migrator::Runner.new.run_pending_migrations
end

But, i still prefer to check if running with lucky dev, anyway, i consider unless running with lucky dev, other cases run migration automatically is always a good idea?

from avram.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.