@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | */ |
12 | 12 | public function up() |
13 | 13 | { |
14 | - Schema::table('translation__translations', function (Blueprint $table) { |
|
14 | + Schema::table('translation__translations', function(Blueprint $table) { |
|
15 | 15 | $table->index('key'); |
16 | 16 | }); |
17 | 17 | } |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | */ |
23 | 23 | public function down() |
24 | 24 | { |
25 | - Schema::table('translation__translations', function (Blueprint $table) { |
|
25 | + Schema::table('translation__translations', function(Blueprint $table) { |
|
26 | 26 | $table->dropIndex('key'); |
27 | 27 | }); |
28 | 28 | } |