MySQL Create Table SQL
Table Structure: okayapi_box_client_balance:/tablelist/okayapi_box_client_balance.html
-- MySQL Table okayapi_box_client_balance
-- From: OkayAPI.com
CREATE TABLE `okayapi_box_client_balance` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`client_id` bigint(20) NULL COMMENT '',
`type` varchar(100) NULL COMMENT '',
`rel_id` int(11) NULL COMMENT '',
`amount` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`description` text NULL COMMENT '',
KEY `client_id` (`client_id`),
KEY `type` (`type`),
KEY `rel_id` (`rel_id`),
KEY `amount` (`amount`),
KEY `description` (`description`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '主机销售-客户钱包';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-5 of 5 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
client_id | bigint(20) | 是 | Normal Index | |||
type | varchar(100) | 是 | ||||
rel_id | int(11) | 是 | ||||
amount | decimal(18,2) | 0.00 | 是 | 0.00 | ||
description | text | 是 |