module
Version:
v0.0.0-...-2fbf5aa
Opens a new window with list of versions in this module.
Published: Jan 23, 2025
License: MIT
Opens a new window with license information.
README
¶
create
database dtm_busi default character set utf8mb4 collate utf8mb4_unicode_ci;
use dtm_busi;
CREATE TABLE dtm_busi.`user_account`
(
`id` int(11) AUTO_INCREMENT PRIMARY KEY,
`user_id` int(11) not NULL UNIQUE,
`balance` decimal(10, 2) NOT NULL DEFAULT '0.00',
`trading_balance` decimal(10, 2) NOT NULL DEFAULT '0.00',
`create_time` datetime DEFAULT now(),
`update_time` datetime DEFAULT now()
);
Directories
¶
Click to show internal directories.
Click to hide internal directories.