does gii automatically create relations for generated models?

前端 未结 2 1654
自闭症患者
自闭症患者 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:28

    Gii will create relations for MyISAM tables if you include a format like the following in the comment of the referenced columns:

    CONSTRAINT FOREIGN KEY (name_of_this_field) REFERENCES related_table_name(related_field_name)
    

提交回复
热议问题