我不明白,我手动将我的桌子放在我的cakephp模型中:
<?php
class Configs extends AppModel {
public $useTable = 'data_configs';
}
我有错误Table data_configs for model Configs was not found in datasource default
。
如果我在我的mysql中为另一个表更改我的表,它正在工作......问题是什么?我的桌子存在而不是空的。
答案 0 :(得分:4)
尝试清除Cake的缓存:
$ cd app/tmp/cache
$ find . -type f -delete