MySQL Create Table SQL
Table Structure: okayapi_openant_tax_rate_to_user_class:/tablelist/okayapi_openant_tax_rate_to_user_class.html
-- MySQL Table okayapi_openant_tax_rate_to_user_class
-- From: OkayAPI.com
CREATE TABLE `okayapi_openant_tax_rate_to_user_class` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`tax_rate_id` int(11) NOT NULL COMMENT '',
`user_class_id` int(11) NOT NULL COMMENT '',
KEY `tax_rate_id` (`tax_rate_id`),
KEY `user_class_id` (`user_class_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'openant电商-用户税率';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-2 of 2 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
tax_rate_id | int(11) | 否 | ||||
user_class_id | int(11) | 否 |