From fd71c2e0148a03b424ed294ccb52f5a0a4fb1e22 Mon Sep 17 00:00:00 2001 From: buke <1312023945@qq.com> Date: Fri, 9 Aug 2024 17:16:25 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A8=E7=BB=93=E6=9E=84=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 1723194935_change_table_user_address.up.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 1723194935_change_table_user_address.up.sql diff --git a/1723194935_change_table_user_address.up.sql b/1723194935_change_table_user_address.up.sql new file mode 100644 index 0000000..23125f8 --- /dev/null +++ b/1723194935_change_table_user_address.up.sql @@ -0,0 +1,3 @@ +ALTER TABLE `ufutx_user_address` + MODIFY COLUMN `mobile` varchar(24) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '收件人手机号' AFTER `name`, + MODIFY COLUMN `area_code` int(10) NULL DEFAULT NULL COMMENT '国家手机编号' AFTER `mobile`; \ No newline at end of file