예제 #1
0
 public function export()
 {
     return Yaml::dump(array('basic' => $this->basic, 'tables' => $this->tables->export(), 'views' => $this->views->export(), 'rows' => $this->rows->export()), 4, 2);
 }
예제 #2
0
파일: Table.php 프로젝트: panlatent/mydbvc
 public function export()
 {
     return array('name' => $this->name, 'columns' => $this->columns->export(), 'indexs' => $this->indexs->export(), 'options' => array('engine' => $this->engine, 'collation' => $this->collation));
 }