MOD make database migration laravel 12 compatible part2
This commit is contained in:
parent
e49c64a4df
commit
6fc5a7374a
@ -50,6 +50,12 @@ public function register(): void
|
||||
*/
|
||||
public function boot(): void
|
||||
{
|
||||
\Illuminate\Database\Schema\Blueprint::macro('userIdFields', function () {
|
||||
$this->unsignedInteger('created_by')->nullable();
|
||||
$this->unsignedInteger('updated_by')->nullable();
|
||||
$this->unsignedInteger('deleted_by')->nullable();
|
||||
});
|
||||
|
||||
\Livewire\Livewire::component('app.filament.pages.price-list-processor', \App\Filament\Pages\PriceListProcessor::class);
|
||||
/*
|
||||
\Livewire\Livewire::component('filament.livewire.notifications', \Filament\Livewire\Notifications::class);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user