33 lines
842 B
PHP
33 lines
842 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class DepartmentSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
DB::table('departments')->insert([
|
|
[
|
|
'id' => '60b41063-c44c-40ce-b131-a06898bbc13c',
|
|
'department_code' => 'D0001',
|
|
'department_name' => 'Teknologi Informasi',
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
],
|
|
[
|
|
'id' => '61b41063-c44c-40ce-b131-a06898bbc13c',
|
|
'department_code' => 'D0002',
|
|
'department_name' => 'Jurusan Lainnya',
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
],
|
|
]);
|
|
}
|
|
}
|