marktopper / doctrine-dbal-timestamp-type by marktopper

Add the timestamp type for Doctrine/DBAL
623,610
49
2
Package Data
Maintainer Username: marktopper
Package Create Date: 2016-11-24
Package Last Update: 2024-03-06
Language: PHP
License: MIT
Last Refreshed: 2024-04-19 15:01:47
Package Statistics
Total Downloads: 623,610
Monthly Downloads: 10,197
Daily Downloads: 463
Total Stars: 49
Total Watchers: 2
Total Forks: 9
Total Open Issues: 2

Doctrine/DBAL Timestamp Type

Since Doctrine/DBAL does not support the MySQL Timestamp type, you might want to add it on your own using this package.

Why using this?

According to this issue, Doctrine/DBAL does not support MySQL-specific database types like this one. Therefor we must add it ourself.

Installation

composer require marktopper/doctrine-dbal-timestamp-type

Then add the type to Doctrine\DBAL:

\Doctrine\DBAL\Types\Type::addType('timestamp', 'MarkTopper\DoctrineDBALTimestampType\TimestampType');

Laravel 5

You can use the Laravel Provider to ensure that the type is added to Doctrine\DBAL by adding the following to providers:

MarkTopper\DoctrineDBALTimestampType\Laravel5ServiceProvider::class,