diff --git a/src/FilamentMoneyFieldServiceProvider.php b/src/FilamentMoneyFieldServiceProvider.php index f3b4d8d..6416f7d 100644 --- a/src/FilamentMoneyFieldServiceProvider.php +++ b/src/FilamentMoneyFieldServiceProvider.php @@ -21,12 +21,5 @@ public function boot(): void $this->publishes([ __DIR__.'/../config/filament-money-field.php' => config_path('filament-money-field.php'), ], 'config'); - - Blueprint::macro('money', function (string $name, ?string $indexName = null) { - $this->unsignedBigInteger($name); - $this->string("{$name}_currency"); - - $this->index([$name, "{$name}_currency"], $indexName); - }); } }