blob: 9c12b040f7e5fdd2a340ef8335a99928fe6a35e0 (
plain)
1
2
3
4
5
6
7
|
CREATE TABLE httptestitem (
httptestitemid bigint DEFAULT '0' NOT NULL,
httptestid bigint DEFAULT '0' NOT NULL,
itemid bigint DEFAULT '0' NOT NULL,
type integer DEFAULT '0' NOT NULL,
PRIMARY KEY (httptestitemid)
) with OIDS;
|