table('revenue', ['comment' => '提成记录', 'engine' => 'InnoDB', 'encoding' => 'utf8mb4', 'collation' => 'utf8mb4_unicode_ci']); $table->addColumn('agency', 'string',['limit'=>30, 'default'=>'','comment'=>'代理账号']) ->addColumn('role_id', 'integer',['limit'=>8, 'default'=>0,'comment'=>'角色id']) ->addColumn('money', 'decimal',['limit'=>[8,2], 'default'=>0,'comment'=>'提成金额']) ->addColumn('amount', 'decimal',['limit'=>[8,2], 'default'=>0,'comment'=>'成交金额']) ->addColumn('cdk_code', 'string',['limit'=>10, 'default'=>'','comment'=>'兑换码']) ->addColumn('account', 'string',['limit'=>30, 'default'=>'','comment'=>'玩家账号']) ->addColumn('create_time', 'integer',['limit'=>10, 'default'=>0,'comment'=>'创建时间']) ->create(); } }