fix: text field
This commit is contained in:
parent
7e4b1a8f8f
commit
4a20abcbfa
1 changed files with 5 additions and 5 deletions
|
|
@ -21,8 +21,8 @@ public function up(): void
|
|||
$table->string('smtp_host')->nullable();
|
||||
$table->integer('smtp_port')->nullable();
|
||||
$table->string('smtp_encryption')->nullable();
|
||||
$table->string('smtp_username')->nullable();
|
||||
$table->string('smtp_password')->nullable();
|
||||
$table->text('smtp_username')->nullable();
|
||||
$table->text('smtp_password')->nullable();
|
||||
$table->integer('smtp_timeout')->nullable();
|
||||
$table->boolean('smtp_notifications_test')->default(true);
|
||||
$table->boolean('smtp_notifications_deployments')->default(false);
|
||||
|
|
@ -69,12 +69,12 @@ public function up(): void
|
|||
$table->boolean('smtp_enabled')->default(false);
|
||||
$table->string('smtp_from_address')->nullable();
|
||||
$table->string('smtp_from_name')->nullable();
|
||||
$table->string('smtp_recipients')->nullable();
|
||||
$table->text('smtp_recipients')->nullable();
|
||||
$table->string('smtp_host')->nullable();
|
||||
$table->integer('smtp_port')->nullable();
|
||||
$table->string('smtp_encryption')->nullable();
|
||||
$table->string('smtp_username')->nullable();
|
||||
$table->string('smtp_password')->nullable();
|
||||
$table->text('smtp_username')->nullable();
|
||||
$table->text('smtp_password')->nullable();
|
||||
$table->integer('smtp_timeout')->nullable();
|
||||
});
|
||||
$instance_settings = InstanceSettings::all();
|
||||
|
|
|
|||
Loading…
Reference in a new issue