Completed
Pull Request — master (#10)
by
unknown
30s
created
updates/change_sort_order_column_type.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,14 +9,14 @@
 block discarded – undo
9 9
 {
10 10
     public function up()
11 11
     {
12
-        Schema::table('vojtasvoboda_reviews_reviews', static function (Blueprint $table) {
12
+        Schema::table('vojtasvoboda_reviews_reviews', static function(Blueprint $table) {
13 13
             $table->integer('sort_order')->default(0)->change();
14 14
         });
15 15
     }
16 16
 
17 17
     public function down()
18 18
     {
19
-        Schema::table('vdlp_redirect_clients', static function (Blueprint $table) {
19
+        Schema::table('vdlp_redirect_clients', static function(Blueprint $table) {
20 20
             $table->boolean('sort_order')->nullable()->change();
21 21
         });
22 22
     }
Please login to merge, or discard this patch.