We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c2996b commit aa2db9dCopy full SHA for aa2db9d
updates/v2.0.0/convert_data.php
@@ -0,0 +1,17 @@
1
+<?php namespace Winter\Builder\Updates;
2
+
3
+use Db;
4
+use Winter\Storm\Database\Updates\Migration;
5
6
+class ConvertData extends Migration
7
+{
8
+ public function up()
9
+ {
10
+ Db::table('system_settings')->where('item', 'rainlab_builder_settings')->update(['item' => 'winter_builder_settings']);
11
+ }
12
13
+ public function down()
14
15
+ Db::table('system_settings')->where('item', 'winter_builder_settings')->update(['item' => 'rainlab_builder_settings']);
16
17
+}
updates/version.yaml
@@ -28,3 +28,4 @@
28
"2.0.0":
29
- Rebrand to Winter.Builder
30
- "Fixes namespace parsing on php >= 8.0"
31
+ - v2.0.0/convert_data.php
0 commit comments