GithubHelp home page GithubHelp logo

Comments (1)

oskarpearson avatar oskarpearson commented on June 17, 2024

I've had problems with this in the past because, in reality, people run database migrations in different orders.

Let's say we have three developers working at the same time

Consider this timeline:

Monday

  • Developer 1 creates and their a database migration in their branch. It adds column sometable.foo in migration 0001 to their local db.
  • Developer 2 creates and runs a database migration in their branch. It adds column sometable.bar in migration 0002 to their local db.

Tuesday

  • Developer 1 merges their code to production. Production table consists of [:id, :foo]
  • Developer 2 rebases.
  • Developer 2 runs db:migrate. Column foo gets added to their database table. Their table consists of [:id, :bar, :foo]
  • Developer 2 submits a diff that changes the annotate order to db

Every time Developer 2 runs db:migrate and annotate runs, it'll show a 'diff' on developer 2, since their local table is out of order. The only way out of this is to db rollback, and then roll forwards, or reset their db entirely.

Why do this at all?

I'm not convinced there's a lot of value to trying to manage the order of columns in the database. Unless you have an exceptional situation, you're micro-optimising for very little benefit.

  • You can't later insert a column between columns 1 and 2 without rebuilding the whole table. Which involves massive downtime for most db engines
  • Most ID fields should be indexed, so the placement in the table doesn't matter very much anyway.

from annotate_models.

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.