22 | | INSERT INTO transaction (transaction_name, amount, net_amount, date, tag_id) VALUES |
23 | | ('Bought groceries', 1000.00, 800.00, '2024-11-23 13:51:35+02:00', 1), |
24 | | ('Paid rent', 15000.00, 15000.00, '2024-11-01 17:01:41+02:00', 5), |
25 | | ('Dinner with friends', 2500.00, 1500.00, '2024-11-29 22:02:22+02:00', 2), |
26 | | ('Movie tickets', 600.00, 600.00, '2024-11-30 17:38:00+02:00', 4), |
27 | | ('Electricity bill', 1200.00, 1200.00, '2024-11-02 07:03:35+02:00', 5); |
| 21 | INSERT INTO transaction (transaction_name, amount, net_amount, date) VALUES |
| 22 | ('Bought groceries', 1000.00, 800.00, '2024-11-23 13:51:35+02:00'), |
| 23 | ('Paid rent', 15000.00, 15000.00, '2024-11-01 17:01:41+02:00'), |
| 24 | ('Dinner with friends', 2500.00, 1500.00, '2024-11-29 22:02:22+02:00'), |
| 25 | ('Movie tickets', 600.00, 600.00, '2024-11-30 17:38:00+02:00'), |
| 26 | ('Electricity bill', 1200.00, 1200.00, '2024-11-02 07:03:35+02:00'); |
| 27 | |
| 28 | INSERT INTO tag_assigned_to_transaction (transaction_id, tag_id) VALUES |
| 29 | (1, 1), |
| 30 | (2, 5), |
| 31 | (3, 2), |
| 32 | (4, 4), |
| 33 | (5, 5); |