Anyone know of a Yii extension or method for displaying model relations and table schema (including keys and comments) as a flowchart? -
i can't seem find extension/module/etc nicely.
you can access column metadata follows, want way display flowchart or hypergraph in model's index.
$m=new mymodel; yii::log(cvardumper::dumpasstring($m->tableschema->columns),'warning');
// echo $m->tojson(); // uses json behavior, give js flowchart show schema
there 1 tool in phpmyadmin called designer. written in php , draw nice data model database. should refer code.
Comments
Post a Comment