clickbar / laravel-magellan

A modern PostGIS toolbox for Laravel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bug when using magellanEnablePostgis

djfhe opened this issue · comments

Migration:

<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;

return new class() extends Migration
{
    public function up(): void
    {
        Blueprint::magellanEnablePostgis();
    }

    public function down(): void
    {
        Blueprint::magellanDisablePostgis();
    }
};

Error Message:
image

Fixed in 3405154