abnab
abnab

Reputation: 846

cakephp issue with read()

Hi this is a cakephp issue that I am facing.

I added a field company in tbl_promos

when I try to read data $this->data = $this->Promo->read(null, $id); using this. It does not throw value on company in the array

cheers!!!!

Upvotes: 0

Views: 68

Answers (1)

deceze
deceze

Reputation: 522597

If the app is running with debug set to 0 you'll probably need to clear the /app/tmp/cache/models cache before Cake becomes aware of the new database structure.

Upvotes: 4

Related Questions