PluginProbe
Tableberg – Simple Gutenberg Table Block / 1.1.5
Tableberg – Simple Gutenberg Table Block v1.1.5
1.1.5 1.1.4 1.1.3 1.1.2 1.1.1 1.1.0 1.0.5 1.0.4 1.0.3 1.0.2 1.0.1 trunk 0.0.2 0.2.1 0.3.2 0.3.3 0.4.1 0.5.0 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 All 42 releases
← All changes | renderer/Migrations/TableBlockMigrator.php +2 -1 1.0.11.1.5 View file →
@@ -2,9 +2,9 @@
2 2
3 3 namespace Tableberg\Renderer\Migrations;
4 4
5 5 class TableBlockMigrator {
6 - const CURRENT_VERSION = 2;
6 + const CURRENT_VERSION = 3;
7 7
8 8 public function migrate($attrs, $block = null) {
9 9 if (!is_array($attrs)) {
10 10 return $attrs;
@@ -48,7 +48,8 @@
48 48 private function get_migrators() {
49 49 return [
50 50 0 => new TableBlockMigratorV0ToV1(),
51 51 1 => new TableBlockMigratorV1ToV2(),
52 + 2 => new TableBlockMigratorV2ToV3(),
52 53 ];
53 54 }
54 55 }