How to add dynamic number of Things

Suppose you have a Datatype of “Job done”. Then you have field called “Description” (which described the job done). The user can add their job done to an invoice, but what if the user has more than one job done. How can the Database be set up to allow for multiple job’s done per invoice?

The user needs to be able to click on ‘add a job’ and for a new input to show which will update the DB for that invoice.

The Invoice data type should have a field that is a list of “Jobs Done”. When a user clicks on “add a job”, you create a new Job Done in the database and that new Job Done to the invoice you’re working with.

1 Like