Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Blueprint extends BaseBlueprint |
||
12 | { |
||
13 | /** |
||
14 | * Enable postgis on this database. |
||
15 | * Will create the extension in the database. |
||
16 | * |
||
17 | * @return \Illuminate\Support\Fluent |
||
18 | */ |
||
19 | 2 | public function enablePostgis() |
|
22 | } |
||
23 | |||
24 | /** |
||
25 | * Disable postgis on this database. |
||
26 | * WIll drop the extension in the database. |
||
27 | * |
||
28 | * @return \Illuminate\Support\Fluent |
||
29 | */ |
||
30 | 2 | public function disablePostgis() |
|
35 |