comparison database/schema/version.sql @ 8:68cc276ac118

SQL material from old tree, split up for accessibility.
author David A. Holland
date Sun, 19 Feb 2012 19:54:48 -0500
parents
children 40f64a96481f
comparison
equal deleted inserted replaced
7:c013fb703183 8:68cc276ac118
1 --
2 -- Schema info.
3 --
4 -- The schema version is stored in every PR when the PR is
5 -- entered; this helps reconstruct history.
6 --
7 -- The schema version is also used for future-proofing.
8
9 -- Should have only one row.
10 CREATE TABLE schemainfo (
11 version int not null
12 )
13 WITHOUT OIDS;