progetto di test della creazione di un progetto basato sul framework laravel e aggiunta form login e register utilizzando breeze
filippo.bertilotti
2024-04-18 cb1c3cea713606de7bc5b657159a2c56cd537ef2
commit | author | age
fae1b1 1 <?php
F 2
3 use Illuminate\Database\Migrations\Migration;
4 use Illuminate\Database\Schema\Blueprint;
5 use Illuminate\Support\Facades\Schema;
6
7 return new class extends Migration
8 {
9     /**
10      * Run the migrations.
11      */
12     public function up(): void
13     {
14         Schema::create('personal_access_tokens', function (Blueprint $table) {
15             $table->id();
16             $table->morphs('tokenable');
17             $table->string('name');
18             $table->string('token', 64)->unique();
19             $table->text('abilities')->nullable();
20             $table->timestamp('last_used_at')->nullable();
21             $table->timestamp('expires_at')->nullable();
22             $table->timestamps();
23         });
24     }
25
26     /**
27      * Reverse the migrations.
28      */
29     public function down(): void
30     {
31         Schema::dropIfExists('personal_access_tokens');
32     }
33 };