blob: cd44e0f77a0bf450936147077f7cab2fe0bec809 (
plain)
1
2
3
4
5
6
7
8
9
|
CREATE TABLE trends_uint (
itemid bigint unsigned DEFAULT '0' NOT NULL,
clock integer DEFAULT '0' NOT NULL,
num integer DEFAULT '0' NOT NULL,
value_min bigint unsigned DEFAULT '0' NOT NULL,
value_avg bigint unsigned DEFAULT '0' NOT NULL,
value_max bigint unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (itemid,clock)
) type=InnoDB;
|