Removed more actions

This commit is contained in:
Trial97
2021-03-31 17:27:47 +03:00
committed by Dan Christian Bogos
parent ce915c77a6
commit 21d4dd16fa
94 changed files with 239 additions and 1008 deletions

View File

@@ -456,37 +456,6 @@ CREATE INDEX tp_routes_unique ON tp_routes ("tpid", "tenant", "id",
"address");
--
-- Table structure for table `tp_action_profiles`
--
DROP TABLE IF EXISTS tp_action_profiles;
CREATE TABLE tp_action_profiles (
"pk" SERIAL PRIMARY KEY,
"tpid" varchar(64) NOT NULL,
"tenant" varchar(64) NOT NULL,
"id" varchar(64) NOT NULL,
"filter_ids" varchar(64) NOT NULL,
"activation_interval" varchar(64) NOT NULL,
"weight" decimal(8,2) NOT NULL,
"schedule" varchar(64) NOT NULL,
"target_type" varchar(64) NOT NULL,
"target_ids" varchar(64) NOT NULL,
"action_id" varchar(64) NOT NULL,
"action_filter_ids" varchar(64) NOT NULL,
"action_blocker" BOOLEAN NOT NULL,
"action_ttl" varchar(64) NOT NULL,
"action_type" varchar(64) NOT NULL,
"action_opts" varchar(256) NOT NULL,
"action_path" varchar(64) NOT NULL,
"action_value" varchar(64) NOT NULL,
"created_at" TIMESTAMP WITH TIME ZONE
);
CREATE INDEX tp_action_profiles_ids ON tp_action_profiles (tpid);
CREATE INDEX tp_action_profiles_unique ON tp_action_profiles ("tpid", "tenant", "id",
"filter_ids", "action_id");
--
-- Table structure for table `versions`