如何将构建文件夹转移到另一个站点?
问题是数据库表前缀的名称被缝合到文件中,如果我有很多站点,我将不得不手动更改数据。是否可以自动更改表名和前缀?
例如:
abstract class BaseCategoriesPeer {
/** the default database name for this class */
const DATABASE_NAME = 'test';
/** the table name for this class */
const TABLE_NAME = 'test_123_categories';
对于每个新站点,我都必须更改数据?