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

@@ -18,5 +18,5 @@
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-- SOFTWARE.
ALTER TABLE audits ADD COLUMN audit_start_date DATE;
ALTER TABLE audits ADD COLUMN audit_end_date DATE;
ALTER TABLE audits ADD COLUMN audit_start_date TIMESTAMP WITH TIME ZONE;
ALTER TABLE audits ADD COLUMN audit_end_date TIMESTAMP WITH TIME ZONE;