summaryrefslogtreecommitdiffstats
path: root/db_demo/sql/tables/cr_const_gametype.sql
blob: d9e9a99a49fab5406e7405df3c97e2fa4ea61436 (plain)
1
2
3
4
5
6
7
CREATE TABLE const_gametype (
  key            integer PRIMARY KEY,                             -- primary key
  boxsizeid      integer NOT NULL REFERENCES const_boxsize(key),  -- boxsize foreign key
  headtracking   boolean NOT NULL,                                -- headtracking on / off
  stereo         boolean NOT NULL,                                -- stereo vision on / off
  shadow         boolean NOT NULL                                 -- shadow on / off
);