hasTable() public method

Checks if a database table exists
public hasTable ( string $table ) : boolean
$table string
return boolean
Beispiel #1
0
 /**
  * Checks if a database table exists
  *
  * @param string $table
  * @return boolean 
  * @static 
  */
 public static function hasTable($table)
 {
     return \Orangehill\Iseed\Iseed::hasTable($table);
 }