feat: 更新建表sql
This commit is contained in:
@@ -54,6 +54,8 @@ CREATE TABLE `u_account` (
|
||||
`down_limit_enable` tinyint(1) NULL DEFAULT 0 COMMENT '下行限速启用',
|
||||
`up_limit` bigint(20) NULL DEFAULT NULL COMMENT '上行限速',
|
||||
`up_limit_enable` tinyint(1) NULL DEFAULT 0 COMMENT '上行限速启用',
|
||||
`package_reminder` tinyint(4) NULL DEFAULT NULL COMMENT '套餐提醒',
|
||||
`balance_reminder` tinyint(4) NULL DEFAULT NULL COMMENT '余额提醒',
|
||||
`del_flag` tinyint(1) NULL DEFAULT 0 COMMENT '删除标志(0存在 1删除)',
|
||||
`create_by` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
||||
`create_time` datetime NULL DEFAULT NULL COMMENT '创建时间',
|
||||
@@ -115,6 +117,10 @@ CREATE TABLE `u_bill` (
|
||||
`type` tinyint(4) NULL DEFAULT NULL COMMENT '类型',
|
||||
`amount` decimal(18, 4) NULL DEFAULT NULL COMMENT '金额',
|
||||
`status` tinyint(4) NULL DEFAULT NULL COMMENT '状态',
|
||||
`invoice_number` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '发票编号',
|
||||
`invoice_file` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '发票文件',
|
||||
`invoice_file_path` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '发票文件路径',
|
||||
`invoice_time` datetime NULL DEFAULT NULL COMMENT '发票时间',
|
||||
`del_flag` tinyint(1) NULL DEFAULT 0 COMMENT '删除标志(0存在 1删除)',
|
||||
`create_by` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
|
||||
`create_time` datetime NULL DEFAULT NULL COMMENT '创建时间',
|
||||
|
||||
Reference in New Issue
Block a user