Skip to content

Commit acd9a08

Browse files
committed
updated_remarks_into_preview_forms
1 parent 1109995 commit acd9a08

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed
File renamed without changes.
Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
const [rows] = await connection.execute(
2-
`SELECT
3-
forms.id,
4-
forms.form_type,
5-
forms.farmer_name,
6-
forms.created_at,
7-
forms.status,
8-
forms.gender,
9-
forms.block,
10-
forms.hamlet,
11-
forms.panchayat
12-
FROM
13-
forms
14-
WHERE
15-
forms.user_id = ?`,
16-
[userId]
17-
);
1+
const query = `
2+
SELECT
3+
forms.id,
4+
forms.form_type,
5+
forms.farmer_name,
6+
forms.created_at,
7+
forms.status,
8+
forms.gender,
9+
forms.block,
10+
forms.hamlet,
11+
forms.panchayat,
12+
forms.remarks
13+
FROM
14+
forms
15+
WHERE
16+
forms.user_id = ?
17+
`;

0 commit comments

Comments
 (0)