123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- use Illuminate\Database\Seeder;
- class usersTableSeeder extends Seeder
- {
- /**
- * Run the database seeds.
- *
- * @return void
- */
- public function run()
- {
- DB::table('users')->insert([[
- 'name' => 'test1',
- 'no' => '123456',
- 'cre_num' => '410182100000000000',
- 'telphone'=> '15200000000',
- 'address' => '郑州市金水区东风南路升龙广场',
- 'team_id'=> '2',
- ],[
- 'name' => 'test2',
- 'no' => '123456',
- 'cre_num' => '410182200000000000',
- 'telphone'=> '15200000000',
- 'address' => '郑州市金水区东风南路升龙广场',
- 'team_id'=> '1',
- ]]);
- DB::table('team')->insert([[
- 'name' => 'team1',
- 'introduction' => '111111111111111111',
- 'status' => 0
- ],[
- 'name' => 'team2',
- 'introduction' => '432111111111111111',
- 'status' => 0
- ]]);
- DB::table('infos')->insert([[
- 'title' => '公告信息1',
- 'contents' => '111111111111111111',
- 'added_on' => '2019-12-12 10:10:10'
- ],[
- 'title' => '公告信息2',
- 'contents' => '432111111111111111',
- 'added_on' => '2019-12-12 10:10:10'
- ]]);
- }
- }
|