@@ -16,7 +16,7 @@ discard block |
||
| 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 |
||
| 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 | } |