Exemple #1
0
 /**
  * Drop a table from the schema if it exists.
  *
  * @param string $table
  * @return \Illuminate\Database\Schema\Blueprint 
  * @static 
  */
 public static function dropIfExists($table)
 {
     //Method inherited from \Illuminate\Database\Schema\Builder
     return \Jenssegers\Mongodb\Schema\Builder::dropIfExists($table);
 }