Here is the gist of what I am trying to achieve. I have a list of users which has a fixed list of attributes
EmployeeID
Employee
FirstName
LastName
SSN
This can be easily be created in models and a UI can be generated to enter these values
I have another list of user attributes that is not fixed but is dynamic. As an example, I'd like to capture more info if employee is married, if he is a graduate. Basically the list of additional properties for employees is infinite and will be specific to each employee. It is also changing constantly, so cannot plan ahead for it. It obviously does not make sense to create a table with all the fields like this
EmployeeID (foreignKey Employee table)
IsMarried
SpouseName
IsGraduate
GraduationYear
GraduationMajor
GraduationMinor
IsCertified
...
I think a NoSql db like mongodb makes sense here. I believe I can save employeeID of the employee and only the relevant info of the user in the mongodb record. How do I create a UI so the HR folks can have a form to edit/enter this info? Each user will have a different set of attributes and corresponding text fields to display/edit. Any suggestions?