$ git clone https://github.com/sergey-dryabzhinsky/nginx-rtmp-module.git
- We need just one table for users, which will contain all user information. Hence, we will not need registration, login, reset_password, account_info.
- Customer contact form does not need a customer reference. because, we assume that this is an anonymous user.
- We don't need
Customer
table either, because orders can be associated with User tables directly. Product
table can be renamed toVehicles
.Order
can be renamed toReceipts
.- We can move all the fields of Order_details to
Receipt
sequenceDiagram
participant User
participant WebApplication
participant Cache
participant TriggerService
participant Mainframe
User ->> WebApplication: Access rates page
WebApplication ->> Cache: Check cache for rates
OlderNewer