awips2/deltaScripts/13.6.1/createDDSystemStatusTable.sql

7 lines
228 B
MySQL
Raw Normal View History

2017-04-21 18:33:55 -06:00
CREATE TABLE IF NOT EXISTS ddsystemstatus
(
name character varying(255) NOT NULL,
systemtype character varying(255) NOT NULL,
status character varying(255),
CONSTRAINT ddsystemstatus_pkey PRIMARY KEY (name, systemtype)
)