search for: computers_pkey

Displaying 2 results from an estimated 2 matches for "computers_pkey".

2007 Feb 07
2
Problems Generating Scaffolding
...puter_role_pkey PRIMARY KEY (model, os, role) ) WITHOUT OIDS; CREATE TABLE computers ( ram integer NOT NULL, model character varying(15) NOT NULL, cpu integer NOT NULL, cores integer NOT NULL DEFAULT 1, disk integer NOT NULL, -- Space in Gigabytes census integer NOT NULL, CONSTRAINT computers_pkey PRIMARY KEY (model, ram, disk) ) WITHOUT OIDS; COMMENT ON COLUMN computers.disk IS ''Space in Gigabytes''; CREATE TABLE technicians ( name character varying(40) NOT NULL, phone character(4) NOT NULL, department character varying(20) NOT NULL, email character varying(30) NO...
2007 Feb 07
5
Problems Generating Scaffolding
...INT computer_role_pkey PRIMARY KEY (model, os, role) ) WITHOUT OIDS; CREATE TABLE computers ( ram integer NOT NULL, model character varying(15) NOT NULL, cpu integer NOT NULL, cores integer NOT NULL DEFAULT 1, disk integer NOT NULL, -- Space in Gigabytes census integer NOT NULL, CONSTRAINT computers_pkey PRIMARY KEY (model, ram, disk) ) WITHOUT OIDS; COMMENT ON COLUMN computers.disk IS ''Space in Gigabytes''; CREATE TABLE technicians ( name character varying(40) NOT NULL, phone character(4) NOT NULL, department character varying(20) NOT NULL, email character varying(30) NOT NU...