123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- /*
- Navicat Premium Data Transfer
- Source Server : 47.108.51.144
- Source Server Type : PostgreSQL
- Source Server Version : 120004
- Source Host : 47.108.51.144:13002
- Source Catalog : xxl-job
- Source Schema : public
- Target Server Type : PostgreSQL
- Target Server Version : 120004
- File Encoding : 65001
- Date: 22/09/2020 12:35:17
- */
- -- ----------------------------
- -- Table structure for xxl_job_group
- -- ----------------------------
- DROP TABLE IF EXISTS "xxl_job_group";
- CREATE TABLE "xxl_job_group" (
- "id" int8 NOT NULL,
- "app_name" varchar(64) COLLATE "pg_catalog"."default" NOT NULL,
- "title" varchar(12) COLLATE "pg_catalog"."default" NOT NULL,
- "address_type" int2 NOT NULL,
- "address_list" varchar(512) COLLATE "pg_catalog"."default"
- )
- ;
- COMMENT ON COLUMN "xxl_job_group"."app_name" IS '执行器AppName';
- COMMENT ON COLUMN "xxl_job_group"."title" IS '执行器名称';
- COMMENT ON COLUMN "xxl_job_group"."address_type" IS '执行器地址类型:0=自动注册、1=手动录入';
- COMMENT ON COLUMN "xxl_job_group"."address_list" IS '执行器地址列表,多地址逗号分隔';
- -- ----------------------------
- -- Records of xxl_job_group
- -- ----------------------------
- INSERT INTO "xxl_job_group" VALUES (1, 'xxl-job-executor-sample', '示例执行器', 0, NULL);
- -- ----------------------------
- -- Table structure for xxl_job_info
- -- ----------------------------
- DROP TABLE IF EXISTS "xxl_job_info";
- CREATE TABLE "xxl_job_info" (
- "id" int8 NOT NULL,
- "job_group" int8 NOT NULL,
- "job_cron" varchar(128) COLLATE "pg_catalog"."default" NOT NULL,
- "job_desc" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
- "add_time" timestamp(6),
- "update_time" timestamp(6),
- "author" varchar(64) COLLATE "pg_catalog"."default",
- "alarm_email" varchar(255) COLLATE "pg_catalog"."default",
- "executor_route_strategy" varchar(50) COLLATE "pg_catalog"."default",
- "executor_handler" varchar(255) COLLATE "pg_catalog"."default",
- "executor_param" varchar(512) COLLATE "pg_catalog"."default",
- "executor_block_strategy" varchar(50) COLLATE "pg_catalog"."default",
- "executor_timeout" int4 NOT NULL,
- "executor_fail_retry_count" int4 NOT NULL,
- "glue_type" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
- "glue_source" text COLLATE "pg_catalog"."default",
- "glue_remark" varchar(128) COLLATE "pg_catalog"."default",
- "glue_updatetime" timestamp(6),
- "child_jobid" varchar(255) COLLATE "pg_catalog"."default",
- "trigger_status" int2 NOT NULL,
- "trigger_last_time" int8 NOT NULL,
- "trigger_next_time" int8 NOT NULL
- )
- ;
- COMMENT ON COLUMN "xxl_job_info"."job_group" IS '执行器主键ID';
- COMMENT ON COLUMN "xxl_job_info"."job_cron" IS '任务执行CRON';
- COMMENT ON COLUMN "xxl_job_info"."author" IS '作者';
- COMMENT ON COLUMN "xxl_job_info"."alarm_email" IS '报警邮件';
- COMMENT ON COLUMN "xxl_job_info"."executor_route_strategy" IS '执行器路由策略';
- COMMENT ON COLUMN "xxl_job_info"."executor_handler" IS '执行器任务handler';
- COMMENT ON COLUMN "xxl_job_info"."executor_param" IS '执行器任务参数';
- COMMENT ON COLUMN "xxl_job_info"."executor_block_strategy" IS '阻塞处理策略';
- COMMENT ON COLUMN "xxl_job_info"."executor_timeout" IS '任务执行超时时间,单位秒';
- COMMENT ON COLUMN "xxl_job_info"."executor_fail_retry_count" IS '失败重试次数';
- COMMENT ON COLUMN "xxl_job_info"."glue_type" IS 'GLUE类型';
- COMMENT ON COLUMN "xxl_job_info"."glue_source" IS 'GLUE源代码';
- COMMENT ON COLUMN "xxl_job_info"."glue_remark" IS 'GLUE备注';
- COMMENT ON COLUMN "xxl_job_info"."glue_updatetime" IS 'GLUE更新时间';
- COMMENT ON COLUMN "xxl_job_info"."child_jobid" IS '子任务ID,多个逗号分隔';
- COMMENT ON COLUMN "xxl_job_info"."trigger_status" IS '调度状态:0-停止,1-运行';
- COMMENT ON COLUMN "xxl_job_info"."trigger_last_time" IS '上次调度时间';
- COMMENT ON COLUMN "xxl_job_info"."trigger_next_time" IS '下次调度时间';
- -- ----------------------------
- -- Records of xxl_job_info
- -- ----------------------------
- INSERT INTO "xxl_job_info" VALUES (1, 1, '0 0 0 * * ? *', '测试任务1', '2018-11-03 22:21:31', '2018-11-03 22:21:31', 'XXL', '', 'FIRST', 'demoJobHandler', '', 'SERIAL_EXECUTION', 0, 0, 'BEAN', '', 'GLUE代码初始化', '2018-11-03 22:21:31', '', 0, 0, 0);
- -- ----------------------------
- -- Table structure for xxl_job_lock
- -- ----------------------------
- DROP TABLE IF EXISTS "xxl_job_lock";
- CREATE TABLE "xxl_job_lock" (
- "lock_name" varchar(50) COLLATE "pg_catalog"."default" NOT NULL
- )
- ;
- COMMENT ON COLUMN "xxl_job_lock"."lock_name" IS '锁名称';
- -- ----------------------------
- -- Records of xxl_job_lock
- -- ----------------------------
- INSERT INTO "xxl_job_lock" VALUES ('schedule_lock');
- -- ----------------------------
- -- Table structure for xxl_job_log
- -- ----------------------------
- DROP TABLE IF EXISTS "xxl_job_log";
- CREATE TABLE "xxl_job_log" (
- "id" int8 NOT NULL,
- "job_group" int8 NOT NULL,
- "job_id" int8 NOT NULL,
- "executor_address" varchar(255) COLLATE "pg_catalog"."default",
- "executor_handler" varchar(255) COLLATE "pg_catalog"."default",
- "executor_param" varchar(512) COLLATE "pg_catalog"."default",
- "executor_sharding_param" varchar(20) COLLATE "pg_catalog"."default",
- "executor_fail_retry_count" int4 NOT NULL,
- "trigger_time" timestamp(6),
- "trigger_code" int4 NOT NULL,
- "trigger_msg" text COLLATE "pg_catalog"."default",
- "handle_time" timestamp(6),
- "handle_code" int4 NOT NULL,
- "handle_msg" text COLLATE "pg_catalog"."default",
- "alarm_status" int2 NOT NULL
- )
- ;
- COMMENT ON COLUMN "xxl_job_log"."job_group" IS '执行器主键ID';
- COMMENT ON COLUMN "xxl_job_log"."job_id" IS '任务,主键ID';
- COMMENT ON COLUMN "xxl_job_log"."executor_address" IS '执行器地址,本次执行的地址';
- COMMENT ON COLUMN "xxl_job_log"."executor_handler" IS '执行器任务handler';
- COMMENT ON COLUMN "xxl_job_log"."executor_param" IS '执行器任务参数';
- COMMENT ON COLUMN "xxl_job_log"."executor_sharding_param" IS '执行器任务分片参数,格式如 1/2';
- COMMENT ON COLUMN "xxl_job_log"."executor_fail_retry_count" IS '失败重试次数';
- COMMENT ON COLUMN "xxl_job_log"."trigger_time" IS '调度-时间';
- COMMENT ON COLUMN "xxl_job_log"."trigger_code" IS '调度-结果';
- COMMENT ON COLUMN "xxl_job_log"."trigger_msg" IS '调度-日志';
- COMMENT ON COLUMN "xxl_job_log"."handle_time" IS '执行-时间';
- COMMENT ON COLUMN "xxl_job_log"."handle_code" IS '执行-状态';
- COMMENT ON COLUMN "xxl_job_log"."handle_msg" IS '执行-日志';
- COMMENT ON COLUMN "xxl_job_log"."alarm_status" IS '告警状态:0-默认、1-无需告警、2-告警成功、3-告警失败';
- -- ----------------------------
- -- Records of xxl_job_log
- -- ----------------------------
- -- ----------------------------
- -- Table structure for xxl_job_log_report
- -- ----------------------------
- DROP TABLE IF EXISTS "xxl_job_log_report";
- CREATE TABLE "xxl_job_log_report" (
- "id" int8 NOT NULL,
- "trigger_day" timestamp(6),
- "running_count" int4 NOT NULL,
- "suc_count" int4 NOT NULL,
- "fail_count" int4 NOT NULL
- )
- ;
- COMMENT ON COLUMN "xxl_job_log_report"."trigger_day" IS '调度-时间';
- COMMENT ON COLUMN "xxl_job_log_report"."running_count" IS '运行中-日志数量';
- COMMENT ON COLUMN "xxl_job_log_report"."suc_count" IS '执行成功-日志数量';
- COMMENT ON COLUMN "xxl_job_log_report"."fail_count" IS '执行失败-日志数量';
- -- ----------------------------
- -- Records of xxl_job_log_report
- -- ----------------------------
- -- ----------------------------
- -- Table structure for xxl_job_logglue
- -- ----------------------------
- DROP TABLE IF EXISTS "xxl_job_logglue";
- CREATE TABLE "xxl_job_logglue" (
- "id" int8 NOT NULL,
- "job_id" int8 NOT NULL,
- "glue_type" varchar(50) COLLATE "pg_catalog"."default",
- "glue_source" text COLLATE "pg_catalog"."default",
- "glue_remark" varchar(128) COLLATE "pg_catalog"."default" NOT NULL,
- "add_time" timestamp(6),
- "update_time" timestamp(6)
- )
- ;
- COMMENT ON COLUMN "xxl_job_logglue"."job_id" IS '任务,主键ID';
- COMMENT ON COLUMN "xxl_job_logglue"."glue_type" IS 'GLUE类型';
- COMMENT ON COLUMN "xxl_job_logglue"."glue_source" IS 'GLUE源代码';
- COMMENT ON COLUMN "xxl_job_logglue"."glue_remark" IS 'GLUE备注';
- -- ----------------------------
- -- Records of xxl_job_logglue
- -- ----------------------------
- -- ----------------------------
- -- Table structure for xxl_job_registry
- -- ----------------------------
- DROP TABLE IF EXISTS "xxl_job_registry";
- CREATE TABLE "xxl_job_registry" (
- "id" int8 NOT NULL,
- "registry_group" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
- "registry_key" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
- "registry_value" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
- "update_time" timestamp(6)
- )
- ;
- -- ----------------------------
- -- Records of xxl_job_registry
- -- ----------------------------
- -- ----------------------------
- -- Table structure for xxl_job_user
- -- ----------------------------
- DROP TABLE IF EXISTS "xxl_job_user";
- CREATE TABLE "xxl_job_user" (
- "id" int8 NOT NULL,
- "username" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
- "password" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
- "role" int2 NOT NULL,
- "permission" varchar(255) COLLATE "pg_catalog"."default"
- )
- ;
- COMMENT ON COLUMN "xxl_job_user"."username" IS '账号';
- COMMENT ON COLUMN "xxl_job_user"."password" IS '密码';
- COMMENT ON COLUMN "xxl_job_user"."role" IS '角色:0-普通用户、1-管理员';
- COMMENT ON COLUMN "xxl_job_user"."permission" IS '权限:执行器ID列表,多个逗号分割';
- -- ----------------------------
- -- Records of xxl_job_user
- -- ----------------------------
- INSERT INTO "xxl_job_user" VALUES (1, 'admin', 'e10adc3949ba59abbe56e057f20f883e', 1, NULL);
- -- ----------------------------
- -- Primary Key structure for table xxl_job_group
- -- ----------------------------
- ALTER TABLE "xxl_job_group" ADD CONSTRAINT "xxl_job_group_pkey" PRIMARY KEY ("id");
- -- ----------------------------
- -- Primary Key structure for table xxl_job_info
- -- ----------------------------
- ALTER TABLE "xxl_job_info" ADD CONSTRAINT "xxl_job_info_pkey" PRIMARY KEY ("id");
- -- ----------------------------
- -- Primary Key structure for table xxl_job_lock
- -- ----------------------------
- ALTER TABLE "xxl_job_lock" ADD CONSTRAINT "xxl_job_lock_pkey" PRIMARY KEY ("lock_name");
- -- ----------------------------
- -- Indexes structure for table xxl_job_log
- -- ----------------------------
- CREATE INDEX "I_handle_code" ON "xxl_job_log" USING btree (
- "handle_code" "pg_catalog"."int4_ops" ASC NULLS LAST
- );
- CREATE INDEX "I_trigger_time" ON "xxl_job_log" USING btree (
- "trigger_time" "pg_catalog"."timestamp_ops" ASC NULLS LAST
- );
- -- ----------------------------
- -- Primary Key structure for table xxl_job_log
- -- ----------------------------
- ALTER TABLE "xxl_job_log" ADD CONSTRAINT "xxl_job_log_pkey" PRIMARY KEY ("id");
- -- ----------------------------
- -- Indexes structure for table xxl_job_log_report
- -- ----------------------------
- CREATE INDEX "i_trigger_day" ON "xxl_job_log_report" USING btree (
- "trigger_day" "pg_catalog"."timestamp_ops" ASC NULLS LAST
- );
- -- ----------------------------
- -- Primary Key structure for table xxl_job_log_report
- -- ----------------------------
- ALTER TABLE "xxl_job_log_report" ADD CONSTRAINT "xxl_job_log_report_pkey" PRIMARY KEY ("id");
- -- ----------------------------
- -- Primary Key structure for table xxl_job_logglue
- -- ----------------------------
- ALTER TABLE "xxl_job_logglue" ADD CONSTRAINT "xxl_job_logglue_pkey" PRIMARY KEY ("id");
- -- ----------------------------
- -- Indexes structure for table xxl_job_registry
- -- ----------------------------
- CREATE INDEX "i_g_k_v" ON "xxl_job_registry" USING btree (
- "registry_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
- "registry_key" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
- "registry_value" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
- );
- -- ----------------------------
- -- Primary Key structure for table xxl_job_registry
- -- ----------------------------
- ALTER TABLE "xxl_job_registry" ADD CONSTRAINT "xxl_job_registry_pkey" PRIMARY KEY ("id");
- -- ----------------------------
- -- Indexes structure for table xxl_job_user
- -- ----------------------------
- CREATE INDEX "i_username" ON "xxl_job_user" USING btree (
- "username" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
- );
- -- ----------------------------
- -- Primary Key structure for table xxl_job_user
- -- ----------------------------
- ALTER TABLE "xxl_job_user" ADD CONSTRAINT "xxl_job_user_pkey" PRIMARY KEY ("id");
|