|
1 | 1 | -- +goose Up |
2 | 2 | -- +goose StatementBegin |
| 3 | + |
3 | 4 | INSERT INTO "public"."registration_events" ( |
4 | | - "order_no", "event_id", "user_id", "name", "email", "phone_number", |
| 5 | + "id", "order_no", "event_id", "user_id", "name", "email", "phone_number", |
5 | 6 | "image_proof_payment", "payment_date", "status", "up_to_you", "created_by_user_id" |
6 | 7 | ) VALUES |
7 | | - ('ORD-001', 1, '2', 'John Doe', 'john@example.com', '987654321', |
| 8 | + (1, 'ORD-001', 1, '2', 'John Doe', 'john@example.com', '987654321', |
8 | 9 | 'payment_proof1.jpg', '2025-06-01 14:30:00', 'confirmed', 'Looking forward to it!', 2), |
9 | 10 |
|
10 | | - ('ORD-002', 2, '3', 'Jane Doe', 'jane@example.com', '555123456', |
| 11 | + (2, 'ORD-002', 2, '3', 'Jane Doe', 'jane@example.com', '555123456', |
11 | 12 | 'payment_proof2.jpg', '2025-07-05 10:15:00', 'confirmed', 'Excited to learn!', 3), |
12 | 13 |
|
13 | | - ('ORD-003', 3, '2', 'John Doe', 'john@example.com', '987654321', |
| 14 | + (3, 'ORD-003', 3, '2', 'John Doe', 'john@example.com', '987654321', |
14 | 15 | NULL, NULL, 'pending', 'Will bring my team', 2); |
15 | 16 | -- +goose StatementEnd |
16 | 17 |
|
|
0 commit comments