cakephp new field not saving

前端 未结 10 642
渐次进展
渐次进展 2021-02-02 14:43

How to you extend a cakePHP project so it can use a new field in the database?

I just given a CakePHP Project that I am trying to extend the model to include a new field

10条回答
  •  心在旅途
    2021-02-02 15:10

    Whenever you make any changes to your database, please make sure that your app/config/core.php file debug value is 2. Configure::write('debug', 2);

    If it is 0 database changes will not be detected.

提交回复
热议问题