db
This commit is contained in:
0
db/data.sql
Normal file
0
db/data.sql
Normal file
14
db/schema.sql
Normal file
14
db/schema.sql
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
CREATE TABLE nexus.goals (
|
||||||
|
id INT auto_increment NOT NULL,
|
||||||
|
status varchar(100) NULL,
|
||||||
|
create_time DATETIME NULL,
|
||||||
|
update_time DATETIME NULL,
|
||||||
|
name varchar(100) NOT NULL,
|
||||||
|
tag varchar(100) NULL,
|
||||||
|
detail varchar(100) NULL,
|
||||||
|
CONSTRAINT goals_pk PRIMARY KEY (id)
|
||||||
|
)
|
||||||
|
ENGINE=InnoDB
|
||||||
|
DEFAULT CHARSET=utf8mb4
|
||||||
|
COLLATE=utf8mb4_0900_ai_ci
|
||||||
|
COMMENT='目标管理表';
|
5
pom.xml
5
pom.xml
@@ -35,8 +35,9 @@
|
|||||||
<artifactId>spring-boot-starter-data-redis</artifactId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>com.baomidou</groupId>
|
||||||
<artifactId>spring-boot-starter-jooq</artifactId>
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
||||||
|
<version>3.5.14</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
Reference in New Issue
Block a user