Create a join table that combines excursions with logs.
Dev Notes:
Setup a excursionLogs.json file with 2 seed objects. { ExcursionLogs1: { "excursionId": "", "logId": "" } }
create an excursion/logsData.js file in the helpers/data directory. This file should have a function called getExcursionLogs() that combines the data from excursions table with the data from the logs table.
User Story:
N/A
AC:
Create a join table that combines excursions with logs.
Dev Notes:
Setup a excursionLogs.json file with 2 seed objects.
{ ExcursionLogs1: { "excursionId": "", "logId": "" } }
create an excursion/logsData.js file in the helpers/data directory. This file should have a function called getExcursionLogs() that combines the data from excursions table with the data from the logs table.