fix: add deployment and environmentVariable to MigrationReport model

This commit is contained in:
Prem Palanisamy
2026-02-24 23:19:21 +00:00
parent dc441c3973
commit 3ba5e12f89
@@ -53,6 +53,18 @@ class MigrationReport extends Model
'default' => 0,
'example' => 20,
])
->addRule(Resource::TYPE_DEPLOYMENT, [
'type' => self::TYPE_INTEGER,
'description' => 'Number of deployments to be migrated.',
'default' => 0,
'example' => 5,
])
->addRule(Resource::TYPE_ENVIRONMENT_VARIABLE, [
'type' => self::TYPE_INTEGER,
'description' => 'Number of environment variables to be migrated.',
'default' => 0,
'example' => 10,
])
->addRule(Resource::TYPE_SITE, [
'type' => self::TYPE_INTEGER,
'description' => 'Number of sites to be migrated.',