We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e557a34 + 07d57e4 commit 6460d58Copy full SHA for 6460d58
src/Jenssegers/Mongodb/Schema/Builder.php
@@ -14,7 +14,30 @@ public function __construct(Connection $connection)
14
{
15
$this->connection = $connection;
16
}
17
+
18
+ /**
19
+ * Determine if the given table has a given column.
20
+ *
21
+ * @param string $table
22
+ * @param string $column
23
+ * @return bool
24
+ */
25
+ public function hasColumn($table, $column)
26
+ {
27
+ return true;
28
+ }
29
30
31
+ * Determine if the given table has given columns.
32
33
34
+ * @param array $columns
35
36
37
+ public function hasColumns($table, array $columns)
38
39
40
41
/**
42
* Determine if the given collection exists.
43
*
0 commit comments