for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
class CategorySeeder extends Seeder {
private $table = 'category';
public function run()
{
$this->db->truncate($this->table);
$data = [
'id' => 1,
'name' => '本',
];
$this->db->insert($this->table, $data);
'id' => 2,
'name' => 'CD',
'id' => 3,
'name' => 'DVD',
}