0
A table stores data from teachers. Each teacher has a degree: specialist, master, doctor, post-doctor and others.
Another table present in the base is the publications. Each publication may (or may not) have a certain type: book, journal, event, tcc and others.
It is certain that in each table there will be a column (attribute) to maintain the guy of the particular record.
Below are two suggestions for the value of these attributes:
abbreviations (strings)
teacher.type = 'mes' || teacher.type = 'dr' || teacher.type = 'esp'
publication.type = 'Liv' || publication.type = 'tcc' || publication.type = 'evt'
whole
teacher.type = 1 || teacher.type = 2 || teacher.type = 3
publication.type = 1 || publication.type = 2 || publication.type = 3
My point is: there is some convention for these attributes or the decision is the responsibility of the developer(s) of the project(s)?