Skip to content

Table: goose_db_version

ColumnTypeNullableNotes
idintegerno
version_idbigintno
is_appliedbooleanno
tstamptimestampnoDefault now()
CREATE TABLE public.goose_db_version (
id integer NOT NULL,
version_id bigint NOT NULL,
is_applied boolean NOT NULL,
tstamp timestamp without time zone DEFAULT now() NOT NULL
);

Please see the schema overview for context. This document was last regenerated on 2026-07-26T08:25:29.520Z.