Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
laravel-mongodb
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sinan
laravel-mongodb
Commits
e68571f1
Commit
e68571f1
authored
Sep 14, 2015
by
tacone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub Schema::hasColumn(), fixes #579
parent
e557a343
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
Builder.php
src/Jenssegers/Mongodb/Schema/Builder.php
+23
-0
No files found.
src/Jenssegers/Mongodb/Schema/Builder.php
View file @
e68571f1
...
...
@@ -15,6 +15,29 @@ 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.
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment