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.
1 parent 84ed34a commit 7e7ee8aCopy full SHA for 7e7ee8a
src/Schema/Blueprint.php
@@ -21,13 +21,14 @@ public function geometry($column)
21
/**
22
* Add a point column on the table.
23
*
24
- * @param $column
+ * @param string $column
25
+ * @param null|int $srid
26
27
* @return \Illuminate\Support\Fluent
28
*/
- public function point($column)
29
+ public function point($column, $srid = null)
30
{
- return $this->addColumn('point', $column);
31
+ return $this->addColumn('point', $column, compact('srid'));
32
}
33
34
0 commit comments