diff --git a/src/main/resources/db/schema.sql b/src/main/resources/db/schema.sql index e5555b2..8b8f13f 100644 --- a/src/main/resources/db/schema.sql +++ b/src/main/resources/db/schema.sql @@ -74,7 +74,7 @@ CREATE TABLE seller_orders ( create_time DATETIME DEFAULT CURRENT_TIMESTAMP COMMENT '下单时间', update_time DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', deleted INT(1) DEFAULT 0 COMMENT '是否删除:0-否,1-是', - payment_id bigint DEFAULT NULL COMMENT '交易流水号(关联支付表)', + payment_id BIGINT DEFAULT NULL COMMENT '交易流水号(关联支付表)', INDEX idx_seller_id (seller_id), INDEX idx_deleted (deleted), INDEX idx_create_time (create_time)