'How fix insert array times?

create table hour(
   hour varchar []     --used types text [] no effect
);

with local postgres

select hours from hour;

       hours
-------------------
{08:00,09:00,09:30}

with server postgres

select hours from hour;

       hours
-------------------
{"08:00 AM","09:00 AM","09:30 AM","01:00 PM"}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source