My hosting provider doesn't support the InnoDB storage engine, so I can't set foreign keys to link my user_id field from my member_table to my event_table that allows each user to create multiple events.
it does support MyISAM, but I can't seem to find a workaround in the mysql documentation to perform the same kind of functionality.
It would be nice to also be able to auto collapse the other table rows if a user deletes their account with foreign keys, but I'm more concerned with making sure that the event_table can be referenced with the same user_id from my member_table.
Anyone know a solution?
Thanks!