21 lines
601 B
PHP
21 lines
601 B
PHP
<?php
|
|
|
|
namespace App\Database\Seeds;
|
|
|
|
use CodeIgniter\Database\Seeder;
|
|
|
|
class DummySeeder extends Seeder {
|
|
public function run() {
|
|
// location
|
|
$data = [
|
|
['LocationID'=>1, 'LocCode'=>'QLOC', 'LocFull'=>'Dummy Location', 'Description'=>'Location made for dummy testing' ]
|
|
];
|
|
$this->db->table('location')->insertBatch($data);
|
|
|
|
// locationAddress
|
|
$data = [
|
|
['LocationID'=>1, 'Street1'=>'Jalan Nginden', 'Street2'=>'Intan Raya', 'City'=>'Surabaya', 'Province'=>'East Java', 'PostCode'=>'60222']
|
|
];
|
|
$this->db->table('locationaddress')->insertBatch($data);
|
|
}
|
|
} |