mirror of
https://github.com/coollabsio/coolify.git
synced 2025-12-28 13:41:51 +00:00
21 lines
390 B
PHP
21 lines
390 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class DisableTwoStepConfirmationSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
DB::table('instance_settings')->updateOrInsert(
|
|
[],
|
|
['disable_two_step_confirmation' => true]
|
|
);
|
|
}
|
|
}
|