GithubHelp home page GithubHelp logo

Comments (4)

Xethron avatar Xethron commented on August 16, 2024

It could be a problem with Doctrine, converting tinyint fields to boolean. Will have to take a look.

from migrations-generator.

warksit avatar warksit commented on August 16, 2024

$table->boolean() in way generators goes back to tinyint anyway?

from migrations-generator.

tomzx avatar tomzx commented on August 16, 2024

@cnanney,

What would be the issue with this conversion? $table->boolean() is effectively tinyint(1).

The generated field type (when $table->boolean() is called during the migration process) will depend on laravel's schema grammar.

from migrations-generator.

cnanney avatar cnanney commented on August 16, 2024

I see I accidentally typed tinyint(1) in instead of tinyint(4) in my initial report... corrected.

I see two issues with this... first, it is not a faithful recreation of the DB if all tinyint are assumed to be boolean. Converting tinyint(4) -> boolean() which is tinyint(1) is incorrect.

Second, at least for MySQL, the Laravel boolean type is only a shortcut for tinyint(1) as you said. So when you write boolean in your migrations you are explicitly giving extra context as to what will be stored in that field.

But, when reverse-engineering a table there is no way to infer what that tinyint field was being used for, no matter the display width. So in this case, on MySQL, I think it should just stay tinyint, so tinyint(1) -> tinyInteger() and tinyint(4) -> tinyInteger(), etc. Don't even bring boolean into it, because all that really says in the migration is "I intend to only store true/false values here", which you have no way of knowing.

Again, this is minor stuff, and the second issue if more a matter of semantics than anything.

from migrations-generator.

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.