I want to insert the data like below:
"car" : [
{
"name": "toyota",
"color": "red",
},
{
"name": "hyundai",
"color": "black",
},
{
"name": "honda",
"color": "grey",
}
]
to database using adonis which is .ts, specifically in table cars with variable id, car_name, car_color. And I do this:
var i
for(i = 0; i<car.length; i++){
await Database .table('cars')
.insert({
car_name: car[i].name,
car_color: car[i].color
})
}