table('agent_customer_top', ['comment' => '全民经纪人置顶表', 'engine'=>'InnoDB']); $table->addColumn('agent_id', 'integer',array('comment'=>'经纪人用户ID')) ->addColumn('customer_id', 'string',array('limit' => 11, 'comment'=>'客户id')) ->addColumn('addtoptime', 'timestamp',array('comment'=>'添加时间','default'=> 'CURRENT_TIMESTAMP')) ->addColumn('root_id', 'integer', array('comment'=>'经济人所属企业')) ->create(); } }