Creating Models

I am just beginning to use Yii (I’m a newbie) to develop a very large business application, which includes 145 tables. Is there a way to make the Yiic “model” and “crud” commands generate models and crud for multiple tables, without having to run them for each table individually? This would save me lots of time.

In yiic, you can use "model *" to create models for all your tables.

Excellent! Thank you!