fix: instance settings migration

This commit is contained in:
peaklabs-dev
2024-12-23 17:15:46 +01:00
parent f26853b576
commit d7a0794bd9

View File

@@ -13,7 +13,6 @@ return new class extends Migration
*/
public function up(): void
{
if (DB::table('instance_settings')->exists()) {
Schema::table('instance_settings', function (Blueprint $table) {
$table->text('smtp_from_address')->nullable()->change();
$table->text('smtp_from_name')->nullable()->change();
@@ -37,7 +36,6 @@ return new class extends Migration
}
}
}
}
/**
* Reverse the migrations.