mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
35 lines
853 B
PHP
35 lines
853 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up(): void
|
|
{
|
|
|
|
Schema::table('companies', function (Blueprint $table) {
|
|
$table->string('smtp_host')->nullable();
|
|
$table->unsignedInteger('smtp_port')->nullable();
|
|
$table->string('smtp_encryption')->nullable();
|
|
$table->text('smtp_username')->nullable();
|
|
$table->text('smtp_password')->nullable();
|
|
$table->string('smtp_local_domain')->nullable();
|
|
$table->boolean('smtp_verify_peer')->default(true);
|
|
});
|
|
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
//
|
|
}
|
|
};
|