[edit] comment

This commit is contained in:
bvbej 2022-09-29 09:58:49 +08:00
parent 50c8072fa2
commit 6f8e504e98

View File

@ -3,10 +3,12 @@ declare(strict_types=1);
namespace BvBeJ\Providers;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\ServiceProvider;
use BvBeJ\Commands\ApolloConfigSync;
use BvBeJ\Handles\Apollo\Client;
use BvBeJ\Handles\BvBeJHandle;
use Illuminate\Database\Schema\Blueprint;
class BvBeJServiceProvider extends ServiceProvider
@ -26,6 +28,10 @@ class BvBeJServiceProvider extends ServiceProvider
ApolloConfigSync::class
]);
}
Blueprint::macro('comment', function ($comment) {
$this->charset = DB::connection()->getConfig('charset') . " COMMENT='{$comment}'";
});
}
/**