同步操作将从 dromara/open-capacity-platform 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
CREATE DATABASE IF NOT EXISTS `tx_logger` DEFAULT CHARACTER SET = utf8;Use `tx_logger`;-- ------------------------------ Table structure for t_logger-- ----------------------------DROP TABLE IF EXISTS `t_logger`;CREATE TABLE `t_logger` (`id` bigint(20) NOT NULL AUTO_INCREMENT,`group_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,`unit_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,`tag` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,`content` varchar(1024) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,`create_time` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,`app_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,PRIMARY KEY (`id`) USING BTREE) ENGINE = InnoDB AUTO_INCREMENT = 19 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;drop table if exists worker_node;create table worker_node(id bigint not null auto_increment comment 'auto increment id',host_name varchar(64) not null comment 'host name',port varchar(64) not null comment 'port',type int not null comment 'node type: actual or container',launch_date date not null comment 'launch date',modified timestamp null comment 'modified time',created timestamp null comment 'created time',primary key(id))comment='db workerid assigner for uid generator',engine = innodb;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。