Problemas de dates

This commit is contained in:
2026-02-19 13:04:03 +01:00
parent b580391f24
commit 12c46b589f

View File

@@ -136,7 +136,7 @@ async function initVersionTable(db: Pool, versionTable: string) {
id BIGINT PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
version TEXT, -- version semantica x.x.x,
notes TEXT,
creation_date TIMESTAMP NOT NULL DEFAULT (now() at time zone 'utc'),
creation_date TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(),
stable BOOLEAN DEFAULT FALSE -- Si la version ha sido testada y se puede desplegar
);
`