Skip to content

Commit

Permalink
chore: schemq 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongho1209 committed Mar 23, 2024
1 parent 8173f79 commit ea1a482
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/resources/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS country_safe_info
(
id BIGINT NOT NULL AUTO_INCREMENT,
title VARCHAR(40) NOT NULL,
content VARCHAR(1000) NOT NULL,
content VARCHAR(5000) NOT NULL,
created_date DATE NOT NULL,
travel_destination_id BIGINT NOT NULL,
PRIMARY KEY (id),
Expand All @@ -31,7 +31,7 @@ CREATE TABLE IF NOT EXISTS review
(
id BIGINT NOT NULL AUTO_INCREMENT,
title VARCHAR(40) NOT NULL,
content VARCHAR(1000) NOT NULL,
content VARCHAR(5000) NOT NULL,
created_date DATE NOT NULL,
image_url1 VARCHAR(500) NULL,
image_url2 VARCHAR(500) NULL,
Expand All @@ -48,7 +48,7 @@ CREATE TABLE IF NOT EXISTS travel_info
(
id BIGINT NOT NULL AUTO_INCREMENT,
title VARCHAR(40) NOT NULL,
content VARCHAR(1000) NOT NULL,
content VARCHAR(5000) NOT NULL,
created_date DATE NOT NULL,
is_deleted BIT(1) NOT NULL DEFAULT false,
travel_destination_id BIGINT NOT NULL,
Expand Down

0 comments on commit ea1a482

Please sign in to comment.