diff --git a/src/index.ts b/src/index.ts index 5f263c6..b43c5d9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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 ); `