Mercurial > ~dholland > hg > swallowtail > index.cgi
view database/schema/version.sql @ 54:36d91dfe017f
use valid sql syntax, mostly from yetoo on freenode
author | David A. Holland |
---|---|
date | Sun, 10 Apr 2022 17:41:24 -0400 (2022-04-10) |
parents | 68cc276ac118 |
children | 40f64a96481f |
line wrap: on
line source
-- -- Schema info. -- -- The schema version is stored in every PR when the PR is -- entered; this helps reconstruct history. -- -- The schema version is also used for future-proofing. -- Should have only one row. CREATE TABLE schemainfo ( version int not null ) WITHOUT OIDS;