优化游玩方式
This commit is contained in:
4
server/db/dice_play_record_add_ante_and_paid_amount.sql
Normal file
4
server/db/dice_play_record_add_ante_and_paid_amount.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
-- DicePlayRecord 新增注数与付费金额字段
|
||||
ALTER TABLE `dice_play_record`
|
||||
ADD COLUMN `ante` int unsigned NOT NULL DEFAULT 1 COMMENT '底注/注数(必须为 dice_ante_config.mult 中存在的值)' AFTER `lottery_type`,
|
||||
ADD COLUMN `paid_amount` int unsigned NOT NULL DEFAULT 0 COMMENT '付费金额(付费局=ante*100,免费局=0)' AFTER `ante`;
|
||||
3
server/db/dice_player_ticket_record_add_ante.sql
Normal file
3
server/db/dice_player_ticket_record_add_ante.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
-- DicePlayerTicketRecord 新增注数字段(用于记录“再来一次”免费抽奖的注数)
|
||||
ALTER TABLE `dice_player_ticket_record`
|
||||
ADD COLUMN `ante` int unsigned NOT NULL DEFAULT 1 COMMENT '底注/注数(历史购买记录默认为1)' AFTER `use_coins`;
|
||||
Reference in New Issue
Block a user