123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- namespace Database\Seeders\Frontend;
- use Database\Seeders\BaseSeeder;
- use Illuminate\Support\Facades\DB;
- use Illuminate\Support\Str;
- /**
- * 新闻列表
- *
- * Class BusinessSeeder
- * @package Database\Seeders
- */
- class WebNewsListSeeder extends BaseSeeder
- {
- public function getColumnData()
- {
- return [
- 'category_id' => ['type' => 'uBigint', 'title' => '分类ID', 'is_null' => 0],
- 'tag' => ['type' => 'string_20', 'title' => '英文标识,方便查询'],
- 'title' => ['type' => 'string', 'title' => '标题', 'is_null' => 0],
- 'logo' => ['type' => 'string', 'title' => '封面图'],
- 'introduction' => ['type' => 'string', 'title' => '简介'],
- 'content' => ['type' => 'text', 'title' => '内容'],
- 'status' => ['type' => 'tinyint', 'title' => '状态', 'remark' => '1使用 2禁用']
- ];
- }
- public function init()
- {
- // DB::table($this->schema)->insert([
- // 'mid' => Str::random(12),
- // 'category_id' => 1,
- // 'title' => '跳跳鱼科技',
- // 'logo' => '',
- // 'introduction' => '跳跳鱼科技',
- // 'content' => '跳跳鱼科技',
- // 'status' => 1,
- // 'created_at' => time(),
- // 'updated_at' => time()
- // ]);
- }
- /**
- * Run the database seeds.
- *
- * @return void
- */
- public function run()
- {
- $this->schema = 'web_news';
- $this->title = '新闻列表';
- $this->start();
- }
- }
|