Skip to content

Commit

Permalink
feat: 最终更改-5
Browse files Browse the repository at this point in the history
  • Loading branch information
318228han committed Apr 2, 2024
1 parent b14bce6 commit 2a96796
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ create table store
create index idx_store_id_runtime_id
on store (store_id, cluster_id, runtime_id);

DROP TABLE IF EXISTS `service_user`;
CREATE TABLE `service_user`
DROP TABLE IF EXISTS `instance_user`;
CREATE TABLE `instance_user`
(
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'id',
`instance_type` int(255) NOT NULL DEFAULT 0 COMMENT '区分不同软件',
Expand All @@ -180,7 +180,7 @@ CREATE TABLE `service_user`
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Service_User信息表';
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Instance_User信息表';



Expand Down

0 comments on commit 2a96796

Please sign in to comment.