From f0f83f0c7c96570f4a8885082ad50feecde69808 Mon Sep 17 00:00:00 2001 From: Guo XIn <371864209@qq.com> Date: Mon, 3 Jul 2023 15:58:03 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=B3=BB=E7=BB=9F=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E7=94=A8=E6=88=B7=E7=9A=84=E6=B6=89=E5=AF=86=E7=BA=A7?= =?UTF-8?q?=E5=88=AB=E4=B8=BA=E6=9C=80=E9=AB=98=E7=BA=A7=E5=88=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dbsql/update/update202306.sql | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dbsql/update/update202306.sql b/dbsql/update/update202306.sql index 6311235..d250016 100644 --- a/dbsql/update/update202306.sql +++ b/dbsql/update/update202306.sql @@ -3,4 +3,7 @@ alter table BIANMU.SYS_USER add SECRET_LEVEL integer default 0 not null; comment on column BIANMU.SYS_USER.SECRET_LEVEL is '涉密级别'; -- 目录表增加数据密级字段 alter table BIANMU.B_DIRECTORY add SECRET_LEVEL integer default 0 not null; -comment on column BIANMU.B_DIRECTORY.SECRET_LEVEL is '数据密级'; \ No newline at end of file +comment on column BIANMU.B_DIRECTORY.SECRET_LEVEL is '数据密级'; + +UPDATE BIANMU.SYS_USER t SET t.SECRET_LEVEL = 4 WHERE t.USER_ID = 'admin' +UPDATE BIANMU.SYS_USER t SET t.SECRET_LEVEL = 4 WHERE t.USER_ID = 'sa' \ No newline at end of file