# give/4.16.8.1/src/FormMigration/Steps/MigrateMeta.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.8.1. 16 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/FormMigration/Steps/MigrateMeta.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/FormMigration/Steps/MigrateMeta.php
- Modified: 2023-10-16T17:55:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.8.1/code/src/FormMigration/Steps/MigrateMeta.php#L10-L20`.

```php
<?php

namespace Give\FormMigration\Steps;

use Give\FormMigration\Contracts\FormMigrationStep;

class MigrateMeta extends FormMigrationStep
{
    public function process()
    {
        $oldFormId = $this->formV2->id;
        $newFormId = $this->formV3->id;
        give_update_meta( $newFormId, 'migratedFormId', $oldFormId );
    }
}

```
