# elementor/3.30.0-dev3/core/database/base-migration.php

Elementor Website Builder – more than just a page builder, version 3.30.0-dev3. 13 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.30.0-dev3/code/core/database/base-migration.php
- Raw: https://pluginprobe.com/plugins/elementor/3.30.0-dev3/raw/core/database/base-migration.php
- Modified: 2025-06-10T09:36:30+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/elementor/3.30.0-dev3/code/core/database/base-migration.php#L10-L20`.

```php
<?php

namespace Elementor\Core\Database;

abstract class Base_Migration {
	/**
	 * Runs when upgrading the database
	 *
	 * @return void
	 */
	abstract public function up();
}

```
