23 lines
439 B
PHP
23 lines
439 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\EnvironmentVariable;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class EnvironmentVariableSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
EnvironmentVariable::create([
|
|
'key' => 'NODE_ENV',
|
|
'value' => 'production',
|
|
'is_build_time' => true,
|
|
'application_id' => 1,
|
|
]);
|
|
}
|
|
}
|