_create_baka_hedui(); } /** * 创建数据对象 * @class BakaHedui * @table baka_hedui * @return void */ private function _create_baka_hedui() { // 创建数据表对象 $table = $this->table('baka_hedui', [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '', ]); // 创建或更新数据表 PhinxExtend::upgrade($table, [ ['channel_order_id', 'string', ['limit' => 255, 'default' => NULL, 'null' => true, 'comment' => '']], ['shanghu', 'string', ['limit' => 255, 'default' => NULL, 'null' => true, 'comment' => '']], ], [ ], false); } }