Change Field Name Takes Time?

I’m not sure if this is a MySQL or a yii question, but when I change a field name in a MySQL table and modify it in the model, it seems it is not picked up right away. The resultant MySQL query still has the old name. However, the next day, it is working.

Is there some sort of caching going on or something I can clear up when making the change?

A side question, is there a document on the logs kept by yii? I see a couple of them, but not sure what is what.

Thank you.

Look at your db config, you may find a ‘schemaCachingDuration’ setting, which would explain your delayed update.

Thanks. I have mine set to 3600. It’s weird though, I have changed names before without issue, I think. Nevertheless, thank you for your help!