Skip to content

Commit 86c16fd

Browse files
committed
init databases
1 parent a92ac4e commit 86c16fd

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cloud-service-user/src/main/resources/schema.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CREATE DATABASE /*!32312 IF NOT EXISTS*/`springcloud` /*!40100 DEFAULT CHARACTER SET utf8 */;
1+
CREATE DATABASE IF NOT EXISTS `springcloud` DEFAULT CHARACTER SET utf8;
22

33
USE `springcloud`;
44
SET FOREIGN_KEY_CHECKS=0;

cloud-zipkin-ui/src/main/resources/mysql.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CREATE DATABASE /*!32312 IF NOT EXISTS*/`zipkin` /*!40100 DEFAULT CHARACTER SET utf8 */;
1+
CREATE DATABASE IF NOT EXISTS `zipkin` DEFAULT CHARACTER SET utf8 ;
22
USE zipkin;
33
CREATE TABLE IF NOT EXISTS zipkin_spans (
44
`trace_id_high` BIGINT NOT NULL DEFAULT 0 COMMENT 'If non zero, this means the trace uses 128 bit traceIds instead of 64 bit',

0 commit comments

Comments
 (0)