CC-2750: Ability to query health status for pypo,

liquidsoap, media monitor, and recorder

-renamed CcComponent to CcServiceRegister
This commit is contained in:
martin 2011-09-30 14:08:15 -04:00
parent a31920e982
commit 1bdcff1119
13 changed files with 236 additions and 182 deletions

View file

@ -502,20 +502,20 @@ COMMENT ON TABLE "cc_login_attempts" IS '';
SET search_path TO public;
-----------------------------------------------------------------------------
-- cc_component
-- cc_service_register
-----------------------------------------------------------------------------
DROP TABLE "cc_component" CASCADE;
DROP TABLE "cc_service_register" CASCADE;
CREATE TABLE "cc_component"
CREATE TABLE "cc_service_register"
(
"name" VARCHAR(32) NOT NULL,
"ip" VARCHAR(18) NOT NULL,
PRIMARY KEY ("name")
);
COMMENT ON TABLE "cc_component" IS '';
COMMENT ON TABLE "cc_service_register" IS '';
SET search_path TO public;