Commit 538e9bf7 authored by jianhua.zhang's avatar jianhua.zhang

账户余额表结构调整

parent 3630a582
......@@ -22,6 +22,7 @@ DROP TABLE IF EXISTS `tron_address`;
CREATE TABLE `tron_address` (
`address` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '账户地址',
`balance` bigint(20) DEFAULT NULL COMMENT '余额',
`frozen_balance` bigint(20) DEFAULT NULL COMMENT '冻结余额',
PRIMARY KEY (`address`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='账户地址表';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment