I'm working on a generator for part numbers, where each space will have a meaning and each space will have a number of possible values. What is a "correct" database design for this?
Example part number layout: A B C D - ####(0000-9999)
A = Fabric backer (set length of 1 digit, 5 different options)
B = Stitching type (set length of 1 digit, 10 different options)
C = Stitching color (set length of 1 digit, 3 different options)
D = Trim color (set length of 1 digit, 10 different options)
#### = can be any 4-digit long number (allows preceding or following zeroes) that corresponds to a fabric color that we use (not all numbers between 0000-9999 are valid, but it isn't in serial order, either, as there are gaps)
We will be creating new part number generators in the future, and they will have different layout, different possible values, and different lengths. I was thinking of doing something like this:
TABLE: GENERATOR (the overall instance of generator)
FIELD_NAME, FIELD_TYPE, FIELD_LENGTH
id, int (autoincrement), 5
name, str, 100
is_active, bool, 1
notes, text, 999
TABLE: GENERATOR_VALUESET (connects the generator with the spaces for valuesets, basically sets the space order and valueset used for each space)
FIELD_NAME, FIELD_TYPE, FIELD_LENGTH
gen_id, int, 5 (correlates to GENERATOR.id)
valueset_id, int, 5 (correlates to VALUESET.id)
ordinal, int, 3
is_active, bool, 1
TABLE: VALUESET (collection of associated values to form a coherent valueset relevant to a particular product option)
FIELD_NAME, FIELD_TYPE, FIELD_LENGTH
id, int(auto increment), 5
name, str, 100
is_active, bool, 1
TABLE: VALUESET_VALUE (connects values to the valueset and sets order)
FIELD_NAME, FIELD_TYPE, FIELD_LENGTH
valueset_id, int, 5 (correlates to VALUESET.id)
value_id, int, 10 (correlates to VALUE.id)
ordinal, int, 3
is_active, bool, 1
TABLE: VALUE (the actual values, includes a displayed value as well as a long-format name)
FIELD_NAME, FIELD_TYPE, FIELD_LENGTH
id, int(auto increment), 10
name, str, 100
displayed_value, str, 5
is_active, bool, 1