awips2/deltaScripts/14.2.1/registryBandwidth.sql

12 lines
260 B
MySQL
Raw Permalink Normal View History

2017-04-21 18:33:55 -06:00
CREATE TABLE datadeliveryregistrybandwidth
(
timeperiod integer NOT NULL,
bytes integer NOT NULL,
CONSTRAINT datadeliveryregistrybandwidth_pkey PRIMARY KEY (timeperiod)
)
WITH (
OIDS=FALSE
);
ALTER TABLE datadeliveryregistrybandwidth
OWNER TO awips;