What do you name tables that have both a class and an instance version?
For exampl开发者_如何学运维e, I have a vehicle class (id, year, make, model) and a vehicle instance (id, vehicle_id, vin). Can't figure out what to name them to differentiate the two. Suggestions?
I would just call it what it is, which is a model year:
VehicleModel
Vehicle
I would use vehicle_model for the "class" table, and vehicle for the other one.
What about VehicleTypes
for the class and Vehicles
for the instances?
精彩评论