| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 12 | #[Package('core')] |
||
| 13 | class Migration1688644407ThemeAddThemeConfig extends MigrationStep |
||
| 14 | { |
||
| 15 | public function getCreationTimestamp(): int |
||
| 16 | { |
||
| 17 | return 1688644407; |
||
| 18 | } |
||
| 19 | |||
| 20 | public function update(Connection $connection): void |
||
| 21 | { |
||
| 22 | $connection->executeStatement('ALTER TABLE `theme` ADD `theme_json` JSON NULL;'); |
||
| 23 | } |
||
| 24 | |||
| 25 | public function updateDestructive(Connection $connection): void |
||
| 27 | } |
||
| 28 | } |
||
| 29 |