我有一个用于管理商店系统的产品/项目的数据库。表结构看起来像
Categories
----------------------------
id
name
description
active
created
modified
Products
----------------------------
id
name
description
active
created
modified
id_category
现在我有兴趣将这个数据库用于多个商店。修改架构的最佳方法是什么。通过id_shop
在每个表中添加一个?或者,还有更好的方法
谢谢