clqms-be/app/Database/Seeds/EthnicSeeder.php

24 lines
683 B
PHP

<?php
namespace App\Database\Seeds;
use CodeIgniter\Database\Seeder;
class EthnicSeeder extends Seeder
{
public function run()
{
$data = [
['EthnicID'=>1, 'Ethnic'=>'Papua Melanezoid'],
['EthnicID'=>2, 'Ethnic'=>'Negroid'],
['EthnicID'=>3, 'Ethnic'=>'Weddoid'],
['EthnicID'=>4, 'Ethnic'=>'Melayu Mongoloid_Proto Melayu'],
['EthnicID'=>5, 'Ethnic'=>'Melayu Mongoloid_Deutro Melayu'],
['EthnicID'=>6, 'Ethnic'=>'Tionghoa'],
['EthnicID'=>7, 'Ethnic'=>'India'],
['EthnicID'=>8, 'Ethnic'=>'Arab'],
];
$this->db->table('ethnic')->insertBatch($data);
}
}