Coder Social home page Coder Social logo

Comments (5)

bpuig avatar bpuig commented on July 27, 2024 1

Found the reason, I was not using clear migrations, I was using the ones for migrating v3 to v4. The issue was with ->change().

Now I set the changes as statements and everything works. bec9b69

from laravel-subby.

bpuig avatar bpuig commented on July 27, 2024

Weird thing happens to me if i put $table->timestamp() type in migrations:


 Doctrine\DBAL\Exception 

 Unknown column type "timestamp" requested. Any Doctrine type that you use has to be registered with \Doctrine\DBAL\Types\Type::addType(). You can get a list of all the known types with \Doctrine\DBAL\Types\Type::getTypesMap(). If this error occurs during database introspection then you might have forgotten to register all database types for a Doctrine Type. Use AbstractPlatform#registerDoctrineTypeMapping() or have your custom types implement Type#getMappedDatabaseTypes(). If the type name is empty you might have a problem with the cache or forgot some mapping information.

I see dateTime ends up making a timestamp column in database. Can you check if the same happens. See deac6e5

from laravel-subby.

boryn avatar boryn commented on July 27, 2024

Hi! I have not had this issue - tested on Windows with XAMPP and 10.4.11-MariaDB and Debian with mysqld 8.0.24.
And used ->timestamp before as well on other machines.

What happens if you explicitly add ->default(null)?

There is an old library for timestamp when it was not yet supported by dbal: https://github.com/marktopper/doctrine-dbal-timestamp-type - you can give it a try.

from laravel-subby.

boryn avatar boryn commented on July 27, 2024

PS. I just noticed that in the scheduler you use ->timestamp - it does work there, doesn't it?

$table->timestamp('scheduled_at')->nullable();
$table->timestamp('failed_at')->nullable();
$table->timestamp('succeeded_at')->nullable();

from laravel-subby.

bpuig avatar bpuig commented on July 27, 2024

Let me try again, maybe it's some weird temp thing

from laravel-subby.

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.