Total Complexity | 3 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Blueprint extends BaseBlueprint |
||
12 | { |
||
13 | 27 | /** |
|
14 | * Create a new point column on the table. |
||
15 | 27 | * |
|
16 | * @param string $column |
||
17 | * @return \Illuminate\Support\Fluent |
||
18 | */ |
||
19 | public function point($column) |
||
22 | } |
||
23 | |||
24 | 28 | /** |
|
25 | * Enable postgis on this database. |
||
26 | 28 | * Will create the extension in the database. |
|
27 | * |
||
28 | * @return \Illuminate\Support\Fluent |
||
29 | */ |
||
30 | public function enablePostgis() |
||
33 | } |
||
34 | |||
35 | 27 | /** |
|
36 | * Disable postgis on this database. |
||
37 | 27 | * WIll drop the extension in the database. |
|
38 | * |
||
39 | * @return \Illuminate\Support\Fluent |
||
40 | */ |
||
41 | public function disablePostgis() |
||
46 |