-
Notifications
You must be signed in to change notification settings - Fork 2
Migration
Viames Marino edited this page Feb 23, 2026
·
1 revision
Pair\Models\Migration tracks executed migrations.
executionTime(): string
Lifecycle/config:
-
_init()defines migration record schema
$migration = \Pair\Models\Migration::findByName('202602230900_create_orders');
if ($migration) {
echo $migration->executionTime();
}- Useful for migration dashboards and execution diagnostics.