예제 #1
0
파일: Base.php 프로젝트: azema/phigrate
 /**
  * create database
  *
  * @param string $name    The database name
  * @param array  $options The options definition of the database
  *
  * @return boolean
  */
 public function createDatabase($name, $options = null)
 {
     return $this->_adapter->createDatabase($name, $options);
 }