does gii automatically create relations for generated models?

前端 未结 2 1667
自闭症患者
自闭症患者 2021-01-16 10:29

I\'m new to Yii here. In the documentation, it seems to imply that gii will create the relations for related models. But when using gii to generate models from DB, it doesn\

2条回答
  •  佛祖请我去吃肉
    2021-01-16 11:32

    Gii can automatically create relations for generated models if corresponding tables in your DB have foreign keys, but not all storage engines support foreign keys. For example, if you use MyISAM tables in MySQL, you have no way to define it.

提交回复
热议问题