Commit 6460d584 authored by Jens Segers's avatar Jens Segers

Merge pull request #580 from tacone/patch-1

Stub Schema::hasColumn(), fixes #579
parents e557a343 07d57e4c
......@@ -14,7 +14,30 @@ class Builder extends \Illuminate\Database\Schema\Builder {
{
$this->connection = $connection;
}
/**
* Determine if the given table has a given column.
*
* @param string $table
* @param string $column
* @return bool
*/
public function hasColumn($table, $column)
{
return true;
}
/**
* Determine if the given table has given columns.
*
* @param string $table
* @param array $columns
* @return bool
*/
public function hasColumns($table, array $columns)
{
return true;
}
/**
* Determine if the given collection exists.
*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment