Skip to content

Commit

Permalink
fix: sql 문법 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Libienz committed Sep 24, 2024
1 parent d3b4292 commit 0bfb7de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/main/resources/db/migration/mysql/V1__init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ CREATE TABLE travel_plan_day
modified_at TIMESTAMP(6),
plan_id BIGINT NOT NULL,
PRIMARY KEY (id),
FOREIGN KEY (plan_id) REFERENCES travel_plan (id);
FOREIGN KEY (plan_id) REFERENCES travel_plan (id)
);

CREATE TABLE travel_plan_place
Expand Down

0 comments on commit 0bfb7de

Please sign in to comment.