Skip to content

Commit

Permalink
refactor: #234 data.sql - EventHall 컬럼명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
park0jae committed Jan 12, 2024
1 parent fffd096 commit bcfbfe2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions core/core-infra/src/main/resources/data.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- EventHall
INSERT INTO event_hall (event_name, address)
INSERT INTO event_hall (name, address)
VALUES ('고척스카이돔', '서울 구로구 경인로 430');

-- Event
Expand Down Expand Up @@ -95,7 +95,8 @@ INSERT INTO payment (booking_id,
approved_at,
created_at,
updated_at)
VALUES ('bookingTestId', 180000, 'CARD', 'HYUNDAI', '11111111****111*', 0, false, 'paymentkey', 'CANCELED', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP);
VALUES ('bookingTestId', 180000, 'CARD', 'HYUNDAI', '11111111****111*', 0, false, 'paymentkey', 'CANCELED',
CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP);

-- Booking Cancel
INSERT INTO booking_cancel (booking_id, amount, reason, created_by, created_at, updated_at)
Expand Down

0 comments on commit bcfbfe2

Please sign in to comment.