|
@@ -375,7 +375,33 @@ begin
|
|
|
end if;
|
|
|
------------------------------------------------------------------------------------------------
|
|
|
--
|
|
|
+ if not exists(select * from information_schema.tables
|
|
|
+ where
|
|
|
+ table_catalog = CURRENT_CATALOG and table_schema = CURRENT_SCHEMA
|
|
|
+ and table_name = 'stats_data_rf_pump') then
|
|
|
+
|
|
|
+ CREATE TABLE "stats_data_rf_pump"
|
|
|
+ (
|
|
|
+ "name" text,
|
|
|
+ "description" text,
|
|
|
+ "last_pm_time" timestamp without time zone,
|
|
|
+ "from_last_pm" real,
|
|
|
+ "total" real,
|
|
|
+ "pm_interval" real,
|
|
|
+ "enable_alarm" boolean,
|
|
|
+ CONSTRAINT "stats_data_rf_pump_pkey" PRIMARY KEY ("name" )
|
|
|
+ )
|
|
|
+ WITH (
|
|
|
+ OIDS=FALSE
|
|
|
+ );
|
|
|
+ ALTER TABLE "stats_data_rf_pump"
|
|
|
+ OWNER TO postgres;
|
|
|
+ GRANT SELECT ON TABLE "stats_data_rf_pump" TO postgres;
|
|
|
+
|
|
|
+ end if;
|
|
|
|
|
|
+ ------------------------------------------------------------------------------------------------
|
|
|
+ --
|
|
|
end;
|
|
|
$$
|
|
|
language 'plpgsql';
|