pears.IQXNetDBVersion

Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.

Tracks the current schema version of the iqxWEB database. Used to determine whether a migration or setup procedure needs to run and to guard against applying the same update twice.

Column Type Null Default Comment
id integer NOT NULL PK — row identifier (single-row table)
version integer NULL Current schema version number
  • id
  • No outgoing foreign keys found.
  • No incoming foreign keys found.
  • No indexes found.
  • No triggers found.
-- IQX database structure split by table
-- Source: IQXDatabaseStructure - with comments.sql
-- Table: "pears"."IQXNetDBVersion"
-- Table comment: Tracks the current schema version of the iqxWEB database. Used to determine whether a migration or setup procedure needs to run and to guard against applying the same update twice.
-- Statement count: 4
 
CREATE TABLE "pears"."IQXNetDBVersion" (
    "id"                             INTEGER NOT NULL
   ,"version"                        INTEGER NULL
   ,PRIMARY KEY ("id" ASC) 
)
GO
 
 
COMMENT ON COLUMN "pears"."IQXNetDBVersion"."id" IS 
	'PK — row identifier (single-row table)'
GO
 
 
COMMENT ON COLUMN "pears"."IQXNetDBVersion"."version" IS 
	'Current schema version number'
GO
 
 
COMMENT ON TABLE "pears"."IQXNetDBVersion" IS 
	'Tracks the current schema version of the iqxWEB database. Used to determine whether a migration or setup procedure needs to run and to guard against applying the same update twice.'
GO
  • database/tables/pears_iqxnetdbversion.txt
  • Last modified: 2026/08/07 19:24
  • by 127.0.0.1