Now about the database, I am using the MySQL that comes with XAMPP. Its free for the download and it already comes with phpmyadmin. I know I can do this "old school" and go command line but who needs that aggravation. Masochism isn't really my thing.
Using phpmyadmin, here is the schema.
Figure 1 Our project database schema |
*Now if you say this can't be done just by using phpmyadmin alone then apparently you are using it wrong.
The design is quite straight-forward. There are four primary tables:
- User Table - contains the log-in and password recovery data. Its support tables of role and user_detail is quite easy to figure out.
- Request Table - handles all the request generated by the users. It should be noted that creating a request doesn't mean you automatically have an "approved" avr reservation.
- AVR table - contains the available AV rooms that can be reserved. The "isAvailable" flag is used if the AVR can be reserved and is not under repair or something.
- Status table - it tracks the state of the request. If you can recall in my previous post, the flow chart logic is on this table. On a side note, the "set_by" field should be linked to the user table via a foreign key.You should be able to figure that one out.
No comments:
Post a Comment