['type' => 'uBigint', 'title' => '用户id'], 'product_id' => ['type' => 'uBigint', 'title' => '产品id'], 'username' => ['type' => 'string_60', 'title' => '公司抬头', 'is_null' => 1], 'mobile' => ['type' => 'string_20', 'title' => '手机号', 'is_null' => 0], 'email' => ['type' => 'string_30', 'title' => '邮箱', 'is_null' => 0], 'desc' => ['type' => 'text', 'title' => '描述'], 'tag' => ['type' => 'string', 'default' => '', 'title' => '标签,挑选有用的建议'], ]; } /** * 初始化内容 */ public function init() { } /** * Run the database seeds. * * @return void */ public function run() { $this->schema = 'user_feedback'; $this->title = '用户反馈表'; $this->start(); } }