I am currently designing a mysql schema which involved in Transactions. Each users has some accounts. Transactions table logs all the transactions made and has fromAccountID and toAccountID columns. I of course need to set the foreign keys here.
Now the problem is users can possibly buy credits by purchasing via Paypal, Google Check out or other similar services. In this case, the fromAccount column should be "Paypal", "Google Checkout" or "Credit" etc., the toAccountID's value is the accountId of that user. How can I set the foreign key constrain in this case? Thanx