['type' => 'string', 'title' => '名称'], 'remark' => ['type' => 'mediumtext', 'title' => '备注'] ]; } public function init() { // DB::table($this->schema)->insert([ // 'mid' => Str::random(12), // 'name' => "默认分组", // 'remark' => '系统默认', // 'created_at' => time(), // 'updated_at' => time() // ]); } /** * Run the database seeds. * * @return void */ public function run() { $this->schema = 'web_position_group'; $this->title = '版位列表'; $this->start(); } }