我在数据库中有一些表,它们有一个图像或几个与之关联的图像。例如:
# table 1
- id
- name
- created_at
# table 2
- id
- name
- created_at
现在每个表都有一个或多个图像。典型的设计是这样的:
# table 1
- id
- name
- image_path
- created_at
# table 2
- id
- name
- created_at
# images table
- id
- table_2_id
- image_path
- created_at
但是,我碰巧在设计方面存在以下问题:
所以现在我想处理这个问题,因为图像的多维表是正确的设计选择,它是否也将成为未来的证明?
# images
- id
- table_id
- table_name
- image_path
- created_at
祝你好运。谢谢。