| @@ -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 | } |