mirror of
https://gitee.com/ShopeX/ECShopX
synced 2026-05-13 01:45:56 +08:00
18 lines
295 B
PHP
18 lines
295 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class CarsTableSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$conn = app('registry')->getConnection('default');
|
|
$conn->insert('cars', ['id'=> 3]);
|
|
}
|
|
}
|