Exemple #1
0
 /**
  * Determine if the given table has given columns.
  *
  * @param string $table
  * @param array $columns
  * @return bool 
  * @static 
  */
 public static function hasColumns($table, $columns)
 {
     //Method inherited from \Illuminate\Database\Schema\Builder
     return \Jenssegers\Mongodb\Schema\Builder::hasColumns($table, $columns);
 }
 /**
  * Determine if the given table has given columns.
  *
  * @param string $table
  * @param array $columns
  * @return bool 
  * @static 
  */
 public static function hasColumns($table, $columns)
 {
     return \Jenssegers\Mongodb\Schema\Builder::hasColumns($table, $columns);
 }