mySQL Database Setup - OrvilleChomer/PHP-mySQL-Message-Wall GitHub Wiki
This "message wall" web app uses a mySQL database to store its information. This includes user info, the messages themselves, comments about the messages, and event log information.
The Database Name: msgWallDemo
Table Names | Description |
---|---|
eventLog | Keep track of system events such as log on and log off |
msgUser | User/msg relationships such as Likes |
users | User profile info and logon info such as a password hash |
userUsers | User to user relationships such as liking a user or blocking a user |
wallMessages | Contains actual wall messages and comments on those messages |