CREATE SEQUENCE seq_turn START 1; CREATE TABLE tbl_turn ( key integer DEFAULT nextval('seq_turn') PRIMARY KEY, -- primary key testid integer NOT NULL REFERENCES tbl_test(key), -- test foreign key blockid integer NOT NULL REFERENCES const_block(key), -- block foreign key elapsedtime time NOT NULL, -- time in ms. holeposition integer NOT NULL, -- position of the hole inserttime timestamp DEFAULT current_timestamp -- time of insertion CONSTRAINT valid_hole CHECK (holeposition >= 0 AND holeposition < 16) );