default value

This commit is contained in:
全栈小学生 2023-06-06 14:58:27 +08:00
parent f040fca995
commit 3bef35bd48
2 changed files with 2 additions and 2 deletions

View File

@ -1140,7 +1140,7 @@ CREATE TABLE member (
balance_get decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '累计获取余额',
money decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '可用余额(可提现)',
money_get decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '累计获取余额(可提现)',
money_cash_outing decimal(10, 2) NOT NULL COMMENT '提现中余额(可提现)',
money_cash_outing decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '提现中余额(可提现)',
growth int(11) NOT NULL DEFAULT 0 COMMENT '成长值',
growth_get int(11) NOT NULL DEFAULT 0 COMMENT '累计获得成长值',
commission decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '当前佣金',

View File

@ -1140,7 +1140,7 @@ CREATE TABLE member (
balance_get decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '累计获取余额',
money decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '可用余额(可提现)',
money_get decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '累计获取余额(可提现)',
money_cash_outing decimal(10, 2) NOT NULL COMMENT '提现中余额(可提现)',
money_cash_outing decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '提现中余额(可提现)',
growth int(11) NOT NULL DEFAULT 0 COMMENT '成长值',
growth_get int(11) NOT NULL DEFAULT 0 COMMENT '累计获得成长值',
commission decimal(10, 2) NOT NULL DEFAULT 0.00 COMMENT '当前佣金',