Update 2024_04_02_173942_create_authentication_log_table.php

This commit is contained in:
Bozhidar Slaveykov 2024-04-04 15:22:59 +03:00
parent 333a59ecd0
commit 59804f63ed

View file

@ -20,4 +20,9 @@ return new class extends Migration
$table->json('location')->nullable();
});
}
public function down(): void
{
Schema::dropIfExists(config('authentication-log.table_name'));
}
};