laravel framework upgrade from version 8 to 9 (#7)

* laravel framework upgrade from version 8 to 9
This commit is contained in:
2023-03-08 13:57:22 +01:00
committed by GitHub
parent 7e242d5aa2
commit e8c8932630
15 changed files with 1560 additions and 1690 deletions

View File

@@ -1,10 +1,12 @@
<?php
declare(strict_types=1);
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateUsersTable extends Migration
return new class extends Migration
{
public function up(): void
{
@@ -22,4 +24,4 @@ class CreateUsersTable extends Migration
{
Schema::dropIfExists('users');
}
}
};