Use timestamptz for audit engagement dates

Store audit_start_date and audit_end_date as TIMESTAMP WITH
TIME ZONE. Alphabetize n8n audit field collections to satisfy
n8n-node lint.

Signed-off-by: Cursor Agent <cursoragent@cursor.com>

Co-authored-by: Bryan FRIMIN <bryan@frimin.fr>
This commit is contained in:
Cursor Agent
2026-07-28 14:47:08 +00:00
committed by Bryan Frimin
parent fe215efbd1
commit f8f5152566
3 changed files with 30 additions and 30 deletions

View File

@@ -63,6 +63,20 @@ export const description: INodeProperties[] = [
},
},
options: [
{
displayName: 'Audit End Date',
name: 'auditEndDate',
type: 'dateTime',
default: '',
description: 'The end date of the audit engagement',
},
{
displayName: 'Audit Start Date',
name: 'auditStartDate',
type: 'dateTime',
default: '',
description: 'The start date of the audit engagement',
},
{
displayName: 'Name',
name: 'name',
@@ -113,20 +127,6 @@ export const description: INodeProperties[] = [
default: '',
description: 'The end date of the audit validity period',
},
{
displayName: 'Audit Start Date',
name: 'auditStartDate',
type: 'dateTime',
default: '',
description: 'The start date of the audit engagement',
},
{
displayName: 'Audit End Date',
name: 'auditEndDate',
type: 'dateTime',
default: '',
description: 'The end date of the audit engagement',
},
],
},
];

View File

@@ -49,6 +49,20 @@ export const description: INodeProperties[] = [
},
},
options: [
{
displayName: 'Audit End Date',
name: 'auditEndDate',
type: 'dateTime',
default: '',
description: 'The end date of the audit engagement',
},
{
displayName: 'Audit Start Date',
name: 'auditStartDate',
type: 'dateTime',
default: '',
description: 'The start date of the audit engagement',
},
{
displayName: 'Name',
name: 'name',
@@ -99,20 +113,6 @@ export const description: INodeProperties[] = [
default: '',
description: 'The end date of the audit validity period',
},
{
displayName: 'Audit Start Date',
name: 'auditStartDate',
type: 'dateTime',
default: '',
description: 'The start date of the audit engagement',
},
{
displayName: 'Audit End Date',
name: 'auditEndDate',
type: 'dateTime',
default: '',
description: 'The end date of the audit engagement',
},
],
},
];