# give/4.16.9/src/Log/Migrations/CompleteRemovedLegacyLogMigration.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 48 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Log/Migrations/CompleteRemovedLegacyLogMigration.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Log/Migrations/CompleteRemovedLegacyLogMigration.php
- Modified: 2022-10-31T21:53:38+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.9/code/src/Log/Migrations/CompleteRemovedLegacyLogMigration.php#L10-L20`.

```php
<?php

namespace Give\Log\Migrations;

use Give\Framework\Migrations\Contracts\Migration;

/**
 * @since 2.21.2
 */
class CompleteRemovedLegacyLogMigration extends Migration
{
    /**
     * @since 2.21.2
     * @inheritdoc
     */
    public static function id(): string
    {
        return 'complete-removed-legacy-log-migration';
    }

    /**
     * @since 2.21.2
     * @inheritdoc
     */
    public static function timestamp()
    {
        return strtotime('2022-06-16');
    }

    /**
     * @since 2.21.2
     * @inheritdoc
     */
    public static function title()
    {
        return esc_html__('Remove legacy Log table', 'give');
    }

    /**
     * @since 2.21.2
     * @inheritdoc
     */
    public function run()
    {
        give_set_upgrade_complete('v20_logs_upgrades');
    }
}

```
