Passed
Push — master ( 6bbf15...aead9d )
by Jonathan
19:29
created
database/migrations/2018_04_15_000036_create_user_settings_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
      */
17 17
     public function up()
18 18
     {
19
-        Schema::create($this->tablePrefix . 'user_settings', function (Blueprint $table) {
19
+        Schema::create($this->tablePrefix.'user_settings', function(Blueprint $table) {
20 20
             $table->unsignedInteger('user_id')->primary();
21 21
             $table->longText('data');
22 22
             $table->timestamps();
@@ -32,6 +32,6 @@  discard block
 block discarded – undo
32 32
      */
33 33
     public function down()
34 34
     {
35
-        Schema::dropIfExists($this->tablePrefix . 'user_settings');
35
+        Schema::dropIfExists($this->tablePrefix.'user_settings');
36 36
     }
37 37
 }
Please login to merge, or discard this patch.