dashboard
repositories
filestore
activity
search
login
gp
/
A-stock
A股代码
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
1
zj
5 hours ago
d615fc515fc52d6ed970c11d59a017e48de4be32
[gp/A-stock.git]
/
sql
/
add_charge_max_amt.sql
1
2
3
4
5
-- 股票风控:最大充值金额
ALTER TABLE `site_setting`
ADD COLUMN `charge_max_amt` int(11) DEFAULT 50000 COMMENT '最大充值金额' AFTER `charge_min_amt`;
UPDATE `site_setting` SET `charge_max_amt` = 50000 WHERE `charge_max_amt` IS NULL;