Files
autoAiWorkSys/_sql/add_user_latitude_field.sql
张成 5d7444cd65 1
2025-11-24 13:23:42 +08:00

14 lines
479 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- 添加 user_latitude 字段到 pla_account 表
-- 执行时间: 2025-01-20
-- 检查字段是否存在,如果不存在则添加
-- 注意MySQL 不支持 IF NOT EXISTS 语法,如果字段已存在会报错,可以忽略
ALTER TABLE pla_account
ADD COLUMN user_latitude VARCHAR(50) NOT NULL DEFAULT '' COMMENT '用户纬度' AFTER user_longitude;
-- 说明
-- 如果字段已存在,执行 ALTER TABLE 会报错,可以忽略
-- 执行前建议先备份数据库