I have a table ( tabla_1
) that is constantly edited with certain values and I want to be able to keep a searchable record of these same data of their state in periods of time gone by.
I am considering creating a second table ( tabla_periodos
) and saving the hundreds of users with an additional field that corresponds to the period as an identifier.
Something like:
{tabla_periodos}
juan, activo, [email protected], periodo1
pedro, inactivo, [email protected], periodo1
juan, inactivo, [email protected], periodo2
pedro, inactivo, [email protected], periodo2
But I feel I would be saturating the table and I think there may be better ways to have a record in my base, any suggestions that can give me those who have more experience in this topic?