@laraguy25 If I understand your question, it seems you are on the right track.
What exactly is your question here?
I'm trying to figure out the best way to structure a database for cars, features and feature values.
For example a "Honda Civic" is a car. "Engine" is a car feature. "V8" is a car feature value.
Is it improper to use a pivot table for this since car_feature_value doesn't only tied car and car feature
together but also has a value field for the car feature?
car: id, name, created_at, updated_at
car_feature: id, name
car_feature_value: id, car_id, car_feature_id, value, created_at, updated_at
Please or to participate in this conversation.