Skip to content

Commit

Permalink
fix(wallet): fixed the syntax error (#382)
Browse files Browse the repository at this point in the history
Reviewed-By: Phil Schneider <info@philschneider.de>
  • Loading branch information
dhiren-singh-007 authored Aug 7, 2024
1 parent 4aa9d68 commit d18bd2c
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ After you ensured that no company_application exists for the operator company, t

INSERT INTO portal.application_checklist(application_id, application_checklist_entry_type_id, date_created, date_last_changed, application_checklist_entry_status_id, comment)
VALUES ('31322991-f6fd-4a40-a529-566c9b04d6a4', 1, now(), null, 3, null),
VALUES ('31322991-f6fd-4a40-a529-566c9b04d6a4', 2, now(), null, 3, null),
VALUES ('31322991-f6fd-4a40-a529-566c9b04d6a4', 3, now(), null, 2, null),
VALUES ('31322991-f6fd-4a40-a529-566c9b04d6a4', 4, now(), null, 1, null),
VALUES ('31322991-f6fd-4a40-a529-566c9b04d6a4', 5, now(), null, 1, null),
VALUES ('31322991-f6fd-4a40-a529-566c9b04d6a4', 6, now(), null, 1, null),
VALUES ('31322991-f6fd-4a40-a529-566c9b04d6a4', 7, now(), null, 1, null),
VALUES ('31322991-f6fd-4a40-a529-566c9b04d6a4', 8, now(), null, 1, null);
('31322991-f6fd-4a40-a529-566c9b04d6a4', 2, now(), null, 3, null),
('31322991-f6fd-4a40-a529-566c9b04d6a4', 3, now(), null, 2, null),
('31322991-f6fd-4a40-a529-566c9b04d6a4', 4, now(), null, 1, null),
('31322991-f6fd-4a40-a529-566c9b04d6a4', 5, now(), null, 1, null),
('31322991-f6fd-4a40-a529-566c9b04d6a4', 6, now(), null, 1, null),
('31322991-f6fd-4a40-a529-566c9b04d6a4', 7, now(), null, 1, null),
('31322991-f6fd-4a40-a529-566c9b04d6a4', 8, now(), null, 1, null);

```

Expand Down

0 comments on commit d18bd2c

Please sign in to comment.