phinx
phinx copied to clipboard
Postgres time type without time zone
When I write this code
$this->table('table1')->changeColumn('time', 'time', ['null' => true, 'timezone' => false]);
I have PDO error You might need to specify "USING "time"::time without time zone".
How I can set type time for column without time zone?
Maybe someone can help here?