PluginProbe
Metricool – Social media and site statistics / trunk
Metricool – Social media and site statistics vtrunk
2.1.0 2.0.2 2.0.1 2.0.0 1.27 trunk
metricool / app / Interfaces / MigrationInterface.php

MigrationInterface.php in Metricool – Social media and site statistics trunk, at app/Interfaces/MigrationInterface.php

21 lines 434 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 declare(strict_types=1);
4
5 namespace Metricool\Interfaces;
6
7 interface MigrationInterface
8 {
9 /**
10 * Version to run this migration for.
11 */
12 public function version(): string;
13
14 /**
15 * Perform schema/data changes required for this migration. This method is
16 * called from the code of the new version after an update. Make sure to
17 * work within that context.
18 */
19 public function up(): void;
20 }
21