You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
639 B
33 lines
639 B
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class ShopGoodsIssueTableSeeder extends Seeder
|
|
{
|
|
|
|
/**
|
|
* Auto generated seed file
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
|
|
|
|
\DB::table('shop_goods_issue')->delete();
|
|
|
|
\DB::table('shop_goods_issue')->insert(array (
|
|
0 =>
|
|
array (
|
|
'id' => 1,
|
|
'goods_id' => '1',
|
|
'question' => '商品咋样',
|
|
'answer' => '很好很好',
|
|
'created_at' => NULL,
|
|
'updated_at' => NULL,
|
|
),
|
|
));
|
|
|
|
|
|
}
|
|
} |