chore: release updated anxinyan version
This commit is contained in:
@@ -12,6 +12,7 @@ DROP TABLE IF EXISTS enterprise_customer_order_refs;
|
||||
DROP TABLE IF EXISTS enterprise_api_nonces;
|
||||
DROP TABLE IF EXISTS enterprise_customer_apps;
|
||||
DROP TABLE IF EXISTS enterprise_customers;
|
||||
DROP TABLE IF EXISTS express_companies;
|
||||
DROP TABLE IF EXISTS shipping_warehouses;
|
||||
DROP TABLE IF EXISTS user_api_tokens;
|
||||
DROP TABLE IF EXISTS sms_code_logs;
|
||||
@@ -729,6 +730,23 @@ CREATE TABLE order_logistics_nodes (
|
||||
KEY idx_order_logistics_nodes_logistics_id (logistics_id)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='物流节点';
|
||||
|
||||
CREATE TABLE express_companies (
|
||||
id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||
company_name VARCHAR(64) NOT NULL DEFAULT '',
|
||||
company_code VARCHAR(64) NOT NULL DEFAULT '',
|
||||
status VARCHAR(32) NOT NULL DEFAULT 'enabled',
|
||||
is_default TINYINT(1) NOT NULL DEFAULT 0,
|
||||
sort_order INT NOT NULL DEFAULT 0,
|
||||
remark VARCHAR(255) NOT NULL DEFAULT '',
|
||||
created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (id),
|
||||
UNIQUE KEY uk_express_companies_name (company_name),
|
||||
UNIQUE KEY uk_express_companies_code (company_code),
|
||||
KEY idx_express_companies_status (status),
|
||||
KEY idx_express_companies_default (is_default)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='快递公司字典';
|
||||
|
||||
CREATE TABLE order_abnormals (
|
||||
id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||
order_id BIGINT UNSIGNED NOT NULL,
|
||||
@@ -949,6 +967,7 @@ CREATE TABLE reports (
|
||||
report_entry_admin_id BIGINT UNSIGNED NULL DEFAULT NULL,
|
||||
report_entry_admin_name VARCHAR(64) NOT NULL DEFAULT '',
|
||||
report_entered_at DATETIME NULL DEFAULT NULL,
|
||||
trace_info_visible TINYINT(1) NOT NULL DEFAULT 0,
|
||||
invalid_reason VARCHAR(255) NOT NULL DEFAULT '',
|
||||
created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
|
||||
Reference in New Issue
Block a user