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

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c# - Copy ObservableCollection to another ObservableCollection -

All overlapping substrings matching a java regex -