Skip to content

Commit 7603875

Browse files
committed
fix: Correct MySQL comment syntax in schema.sql
- Change '---' to '--' for proper MySQL comment syntax - MySQL initialization now completes successfully - All tables created properly: meme, category, meme_category, meme_view_log, meme_custom_log, meme_share_log ✅ Verified working: - MySQL: healthy with all tables - App: healthy and connected to MySQL - Watchtower: healthy and monitoring
1 parent 2fe9791 commit 7603875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

init-scripts/schema.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ create table category
5151
constraint category_name_unique unique (name)
5252
);
5353

54-
--- 밈 카테고리 관계 테이블
54+
-- 밈 카테고리 관계 테이블
5555
create table meme_category
5656
(
5757
id bigint auto_increment primary key,

0 commit comments

Comments
 (0)