id(); $table->foreignId('user_id')->constrained()->onDelete('cascade'); $table->string('action'); $table->string('model')->nullable(); $table->unsignedBigInteger('model_id')->nullable(); $table->text('changes')->nullable(); $table->string('description')->nullable(); $table->timestamp('timestamp')->useCurrent(); $table->boolean('is_success'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('logs'); } };