2024-03-23 10:05:14 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
2024-04-13 22:26:31 +02:00
|
|
|
use Illuminate\Support\Facades\Schema;
|
2024-03-23 10:05:14 +01:00
|
|
|
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Register any application services.
|
|
|
|
*/
|
|
|
|
public function register(): void
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Bootstrap any application services.
|
|
|
|
*/
|
|
|
|
public function boot(): void
|
|
|
|
{
|
2024-04-13 22:26:31 +02:00
|
|
|
Schema::defaultStringLength(191);
|
2024-03-23 10:05:14 +01:00
|
|
|
}
|
|
|
|
}
|