Switch timestamp to timestamptz (#4696)
* Switch timestamps to timestamptz * update standard/custom objects logic to use timestamptz * fix test
This commit is contained in:
@ -9,17 +9,17 @@ export const customTableDefaultColumns: TableColumnOptions[] = [
|
||||
},
|
||||
{
|
||||
name: 'createdAt',
|
||||
type: 'timestamp',
|
||||
type: 'timestamptz',
|
||||
default: 'now()',
|
||||
},
|
||||
{
|
||||
name: 'updatedAt',
|
||||
type: 'timestamp',
|
||||
type: 'timestamptz',
|
||||
default: 'now()',
|
||||
},
|
||||
{
|
||||
name: 'deletedAt',
|
||||
type: 'timestamp',
|
||||
type: 'timestamptz',
|
||||
isNullable: true,
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user