File "2019_08_28_081847_update_smtp_setting_verified.php"
Full Path: /home/isoftco/public_html/hrm/database/migrations/2019_08_28_081847_update_smtp_setting_verified.php
File size: 938 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class UpdateSmtpSettingVerified extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('settings', function (Blueprint $table) {
$table->boolean('verified')->default(0);
});
$smtp = \App\Models\Setting::first();
if ($smtp && $smtp->mail_driver == 'smtp') {
$response = $smtp->verifySmtp();
if ($response['success']){
$smtp->verified = 1;
}
$smtp->save();
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('smtp_settings', function (Blueprint $table) {
$table->dropColumn('verified');
});
}
}