Question

I'm getting the following error:

 Array (
     [0] => Missing table 'TEST_USERS'. If running from a test you may need to add 'app.TEST_USER' to the fixtures array. See output
 below for more details.
     [1] => Array
         (
             [className] => TESTUSER
             [table] => TEST_USERS
             [code] => 500
         ) 
 )

The table does not exist.

The table should not exist.

I grepped my code and found no reference to TEST_USERS, TESTUSERS or TEST.USERS.

I do have a table called USERS_TEST.

Can I get some trouble shooting hints?

Thanks!

Was it helpful?

Solution

Solution:

I changed:

var $useTable = 'TEST';

to:

var $useTable = 'test';

and it worked.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top