blob: 7efcc2316c1df2c1f4fea125ce91b02bc848b94d (
plain)
1
2
3
4
5
6
7
8
|
CREATE TABLE httptestitem (
httptestitemid bigint unsigned DEFAULT '0' NOT NULL,
httptestid bigint unsigned DEFAULT '0' NOT NULL,
itemid bigint unsigned DEFAULT '0' NOT NULL,
type integer DEFAULT '0' NOT NULL,
PRIMARY KEY (httptestitemid)
) ENGINE=InnoDB;
CREATE UNIQUE INDEX httptestitem_httptestitem_1 on httptestitem (httptestid,itemid);
|