Skip to content

Commit

Permalink
Fixed unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zhoozhoo committed Sep 25, 2024
1 parent d172feb commit fe982f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions spring-cloud-room-service/src/main/resources/schema.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CREATE TABLE IF NOT EXISTS ROOM (
ROOM_ID BIGINT AUTO_INCREMENT PRIMARY KEY,
NAME VARCHAR(16) NOT NULL,
ROOM_NUMBER CHAR(2) NOT NULL UNIQUE,
BED_INFO CHAR(2) NOT NULL
NAME VARCHAR(1255) NOT NULL,
ROOM_NUMBER CHAR(4) NOT NULL UNIQUE,
BED_INFO CHAR(255) NOT NULL
);
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ eureka:
client:
enabled: false

# logging.level.org.springframework: DEBUG
logging.level.org.springframework: DEBUG

0 comments on commit fe982f8

Please sign in to comment.