# give/4.16.8.1/src/Framework/Migrations/Contracts/Migration.php

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

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/Framework/Migrations/Contracts/Migration.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/Framework/Migrations/Contracts/Migration.php
- Modified: 2025-03-31T19:17:16+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/Framework/Migrations/Contracts/Migration.php#L10-L20`.

```php
<?php

namespace Give\Framework\Migrations\Contracts;

/**
 * Class Migration
 *
 * Extend this class when create database migration. up and timestamp are required member functions
 *
 * @since 4.0.0 extend BaseMigration class
 * @since 2.9.0
 */
abstract class Migration extends BaseMigration
{
    /**
     * Bootstrap migration logic.
     *
     * @since 2.9.0
     */
    abstract public function run();
}

```
