diff --git a/backend/migrations/m230314_134156_version_bumb_v0_23_0.php b/backend/migrations/m230314_134156_version_bumb_v0_23_0.php new file mode 100644 index 000000000..6934ac0e2 --- /dev/null +++ b/backend/migrations/m230314_134156_version_bumb_v0_23_0.php @@ -0,0 +1,26 @@ +update('sysconfig', ['val'=>'v0.23.0'], ['id'=>'platform_version']); + } + + /** + * {@inheritdoc} + */ + public function safeDown() + { + $this->update('sysconfig', ['val'=>'v0.22.0'], ['id'=>'platform_version']); + } + +}