I'm new to CakePHP so there is a chance I'm doing something wrong, but I get the following error when I try and and use TruncateDirtyTables;
RuntimeException: SQLSTATE[42000]: Syntax error or access violation: 1370 execute command denied to user 'db'@'%' for routine 'test.TruncateDirtyTables'
My setup includes my "normal" database (db) and a test database. I have configured my .env with the following:
I'm new to CakePHP so there is a chance I'm doing something wrong, but I get the following error when I try and and use
TruncateDirtyTables
;My setup includes my "normal" database (
db
) and atest
database. I have configured my.env
with the following:If I change my
DATABASE_TEST_URL
toDATABASE_URL
, the error disappears.