Int 1 adding column to issues table
Steps to add a column to the issues table :
- First you need to map the column you need in Postman, for example to get the status name column:

- In the attributes of the download_issues function it is mapped as fields.status.name. If we say fields.status we would get all the columns from status field (self, description, iconUrl...)

-
In the fields variable of the function we input just the name of the field, e.g. status from the example above
-
Always drop the table before debugging