I am working an a project and would like to know the best way to set up the database to cover all the details.
1st) all accounts need to be able to be connected. (example member 112 is associated to members #132, #125 and #123 but member #123 is not connected to member #112 on their side)
Set table to have 2 fields - member and associate
112 - 132
112 - 125
112 - 123
132 - 112
125 - 112
2nd) members can pass data items between each member where connection is established (#132 transfers item to #112)
Set table to have 5 fields - giver, receiver, data type, date sent, claimed
As I show above the list can get quite large and I am wanting to make sure that I can store everything without overloading the database while I am on a shared server. If the project takes off I will of course move the project to a larger farm of servers but in the mean time I dont want to have any problems.