Esempio n. 1
0
 /**
  * Add comments on columns.
  *
  * @param \Yajra\Oci8\Schema\OracleBlueprint $blueprint
  */
 private function commentColumns(OracleBlueprint $blueprint)
 {
     foreach ($blueprint->commentColumns as $column => $comment) {
         $this->commentColumn($blueprint->getTable(), $column, $comment);
     }
 }