From 9dcd90dc8e329900e6058ac0a3aa44a9e7e04599 Mon Sep 17 00:00:00 2001 From: chenhj <1263187585@qq.com> Date: 星期六, 14 六月 2025 15:45:24 +0800 Subject: [PATCH] 库存明细,以及库存数量更新方法,库存节点存储 --- ruoyi-system/src/main/resources/db/migration/postgresql/V20250531102200__create_province.sql | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ruoyi-system/src/main/resources/db/migration/postgresql/V20250531102200__create_province.sql b/ruoyi-system/src/main/resources/db/migration/postgresql/V20250531102200__create_province.sql index 2dd8e10..8b02d7d 100644 --- a/ruoyi-system/src/main/resources/db/migration/postgresql/V20250531102200__create_province.sql +++ b/ruoyi-system/src/main/resources/db/migration/postgresql/V20250531102200__create_province.sql @@ -3,8 +3,8 @@ CREATE TABLE province ( id bigserial PRIMARY KEY, - create_time timestamp with time zone NOT NULL, - update_time timestamp with time zone NOT NULL, + create_time TIMESTAMP WITHOUT TIME ZONE, + update_time TIMESTAMP WITHOUT TIME ZONE, name varchar(100) DEFAULT '' NOT NULL ); -- Gitblit v1.9.3