We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54e47af commit 00a9c1aCopy full SHA for 00a9c1a
src/main/resources/db/migration/V48__alter_column_fixzone_comment.sql
@@ -1,5 +1,5 @@
1
ALTER TABLE fix_zone_comment
2
- DROP FOREIGN KEY FKc2d91n1o7eindrcl3io79hlj7;
+ DROP FOREIGN KEY FK_fix_zone_comment_club_id;
3
4
5
DROP COLUMN club_id;
@@ -8,5 +8,5 @@ ALTER TABLE fix_zone_comment
8
ADD COLUMN user_id BIGINT NULL DEFAULT 1 AFTER id;
9
10
11
- ADD CONSTRAINT fk_fix_zone_comment_user_id
+ ADD CONSTRAINT FK_fix_zone_comment_user_id
12
FOREIGN KEY (user_id) REFERENCES users (id);
0 commit comments