One question I have is how to take care of the status of a part of the system.
So, I'll give you an example, I have a question table and an answer table for that question.
In these tables I have date field (question: dt_time and answer: dt_reset)
I need to know when a question is:
- unsuccessful
- open
- answered
But for this it would be even simple, just check the dates, whether or not it was answered and make the comparisons.
But then I get into the problem:
He thinks that for a given customer, he does not want the term "open" but rather "in process," and so on, to even want to determine a color for that different status, that per customer.
Could I explain my problem?
I thought of such tables
PERGUNTA
id
texto
dt_pergunta
cliente_id
RESPOSTA
id
pergunta_id
resposta
dt_resposta
STATUS
id
cliente_id
termo
cor
But how to know which status is which?!