table('designer') ->addColumn('employee_id', 'integer', ['limit'=> 11,'comment' => '员工表id', 'null'=> true]) ->addColumn('good_house', 'string', ['limit'=> 255,'comment' => '擅长户型', 'null'=> true,'default'=>'']) ->addColumn('design_concept', 'string', ['limit'=> 255,'comment' => '设计理念', 'null'=> true,'default'=>'']) ->addColumn('vcr', 'string', ['limit'=> 255,'comment' => 'vcr', 'null'=> true,'default'=>'']) ->addColumn('media_id', 'text', array('comment'=>'媒体文件id', 'null' => true)) ->addColumn('weixin_media', 'text', array('comment'=>'媒体路径', 'null' => true)) ->update(); $this->table('employee') ->addColumn('show', 'integer', ['comment'=>'设计师是否展示0展示,1不展示', 'default' =>0]) ->update(); } }