You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/resources/db/migration/V56__add_new_bird_jibbidulgi.sql
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,3 +9,6 @@ INSERT INTO bird_habitat (id,bird_id,habitat_type) VALUES (nextval('bird_habitat
9
9
10
10
-- bird_residency
11
11
INSERT INTO bird_residency (id,bird_id,residency_type_id,rarity_type_id,month_bitmask) VALUES (nextval('bird_residency_seq'),603,(SELECT id FROM residency_type WHERE code='RESIDENT'),(SELECT id FROM rarity_type WHERE code='COMMON'),NULL);
12
+
13
+
-- bird_seq를 올바른 값으로 보정
14
+
SELECT setval('bird_seq', (SELECTMAX(id) FROM bird));
0 commit comments