Hi, I use EPESI 1.5.6; PostgreSQL 9.3. I create field: array('name'=>_M('Input Time'), 'type'=>'time', 'required'=>true, 'visible'=>true).
I view in database, this field's timestamp type. How can I change to time type, replace for timestamp Thank
I think that it's a limitation of ADOdb. Just have a look into libs/adodb/datadict/datadict-postgres.inc.php and you'll see that Meta Types are mapped to T
case 'TIME': case 'DATETIME': case 'TIMESTAMP': case 'TIMESTAMPTZ': return 'T';