Skip to content

Commit

Permalink
Merge pull request #8276 from ladybirdweb/analysis-O3V1dR
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
bhanu2217 authored Dec 20, 2023
2 parents 4955e58 + 0cc06de commit fa70fca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions database/seeders/v_2_0_0/DatabaseSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
use App\Model\kb\Settings;
// Knowledge base
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\Facades\Schema;

class DatabaseSeeder extends Seeder
{
Expand All @@ -61,7 +61,7 @@ public function run()
Schema::table($tableName, function ($table) use ($column) {
$table->string($column)->nullable()->change();
});
} elseif (Schema::getColumnType($tableName, $column) == 'boolean') {
} elseif (Schema::getColumnType($tableName, $column) == 'boolean') {
Schema::table($tableName, function ($table) use ($column) {
$table->boolean($column)->default(0)->change();
});
Expand Down

0 comments on commit fa70fca

Please sign in to comment.