i am working on a home project for basically multiple members to share payments, or for one member to pay and the other members pay them back
the concept is sort of like if you have a roommate and you pay all the bills, then he would pay half and i need to keep track of which bills that the roommates have paid
i am leaving a lot of the non critical pieces out for clarity
please advise on my schema
bills
BILL_ID
AMOUNT
PAID
PAID_BY_MEMBER_ID
billmembers
BILL_MEMBER_ID
BILL_ID
MEMBER_ID
billpaymentrequired
BILL_PAYMENT_REQUIRED_ID
BILL_ID
MEMBER_ID
CREATE_DATE
REQUIRED_AMOUNT
billpaymentsmade
BILL_PAYMENT_MADE_ID
BILL_PAYMENT_REQUIRED_ID
PAYMENT_AMOUNT
PAYMENT_DATE
members
MEMBER_ID
MEMBER_FIRST
MEMBER_LAST