['type' => 'uBigInt', 'title' => '用户id'], 'username' => ['type' => 'string_60', 'title' => '用户名'], 'mobile' => ['type' => 'string_60', 'title' => '手机号'], 'email' => ['type' => 'string_60', 'title' => '邮箱', 'is_null' => 1], 'password' => ['type' => 'string_60', 'title' => '密码'], 'retries' => ['type' => 'tinyInt', 'default' => 0, 'title' => '失败重试次数'], ]; } /** * 初始化内容 */ public function init() { DB::table($this->schema)->insert([ 'mid' => Str::random(12), 'created_at' => time(), 'updated_at' => time(), 'user_id' => 1, 'username' => 'tty', 'mobile' => '18260175830', 'email' => '597196313@qq.com', 'password' => Hash::make('asdfg1asdfg'), 'retries' => 1, ]); } /** * Run the database seeds. * * @return void */ public function run() { $this->schema = 'agent_account'; $this->title = '代理商账号密码登录'; $this->start(); } }