Esempio n. 1
0
 /**
  * Create a table
  * @param string $table_name the name of the table
  * @param array|string $options
  * @return bool|Ruckusing_Adapter_MySQL_TableDefinition|Ruckusing_Adapter_PgSQL_TableDefinition|Ruckusing_Adapter_Sqlite3_TableDefinition
  */
 public function create_table($table_name, $options = array())
 {
     return $this->_adapter->create_table($table_name, $options);
 }