table('talkskill_chosen')->setComment('精选话术'); $table->addColumn('title', 'string', ['limit'=> 255, 'comment'=> '标题', 'default'=> '']) ->addColumn('use_count', 'integer', ['limit'=> 10, 'comment'=> '使用次数', 'default'=> 0]) ->addColumn('view_times', 'integer', ['limit'=> 10, 'comment'=> '浏览次数', 'default'=> 0]) ->addColumn('del', 'integer', ['limit'=> 1, 'comment'=> '上下架,1下架', 'default'=> 0]) ->addColumn('addtime', 'timestamp', ['comment'=> '添加时间', 'default'=> 'CURRENT_TIMESTAMP']) ->addColumn('root_id', 'integer', ['limit'=> 10, 'comment'=> '组织id', 'default'=> 0]) ->addColumn('employee_id', 'integer', ['limit'=> 10, 'comment'=> '员工id', 'default'=> 0]) ->addColumn('user_cate', 'string', ['limit'=> 100, 'comment'=> '适用人群', 'default'=> '']) ->addColumn('house_type', 'string', ['limit'=> 255, 'comment'=> '房屋类型', 'default'=> '']) ->addColumn('cate1', 'string', ['limit'=> 255, 'comment'=> '一级分类', 'default'=> '']) ->addColumn('cate2', 'string', ['limit'=> 255, 'comment'=> '二级分类', 'default'=> '']) ->create(); } }