I am designing database for labor work invoice. In that I have following entities.
Labor_invoice_table(This is main table I have created)
- Date
- Invoice No. (PK)
- Name of labor
- Job Description
- Amount per Job
- Total Amount
Here I am confuse about Job Description and Amount per Job Invoice Line Item.On each Invoice I have multiple Jobs and for each Job its amount.
I search about it on google. Here also I found one useful detail link Found that I should create new Table
Labor_Job_Description
- Invoice No.(FK parent Labor_invoice_table)
- Job Description
- Job Amount
So that multiple job can be stored in another Table.
Is it proper way? Or should I try something else?