# sequra/4.3.3/src/Services/Migration/interface-migration-manager.php

seQura, version 4.3.3. 26 lines.

- Page: https://pluginprobe.com/plugins/sequra/4.3.3/code/src/Services/Migration/interface-migration-manager.php
- Raw: https://pluginprobe.com/plugins/sequra/4.3.3/raw/src/Services/Migration/interface-migration-manager.php
- Modified: 2024-10-29T15:19:22+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/sequra/4.3.3/code/src/Services/Migration/interface-migration-manager.php#L10-L20`.

```php
<?php
/**
 * Run migrations to make changes to the database.
 *
 * @package    SeQura/WC
 * @subpackage SeQura/WC/Services
 */

namespace SeQura\WC\Services\Migration;

/**
 * Run migrations to make changes to the database.
 */
interface Interface_Migration_Manager {

	/**
	 * Migration to run when the plugin was updated.
	 */
	public function run_install_migrations(): void;

	/**
	 * Migrations to run when the plugin is uninstalled.
	 */
	public function run_uninstall_migrations(): void;
}

```
