From 0f4b9e9ecbed0057ac48bc62b4ce271c635409c6 Mon Sep 17 00:00:00 2001 From: zhangwei Date: Mon, 30 Jul 2018 10:48:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=87=8D=E5=AE=9A=E5=90=91?= =?UTF-8?q?=E5=BA=94=E7=AD=94=E7=A0=81=E7=9A=84=E6=8E=92=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zhangwei --- src/main/resources/sql/update_redirect_code_dict_order.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 src/main/resources/sql/update_redirect_code_dict_order.sql diff --git a/src/main/resources/sql/update_redirect_code_dict_order.sql b/src/main/resources/sql/update_redirect_code_dict_order.sql new file mode 100644 index 000000000..ec2c4bfd6 --- /dev/null +++ b/src/main/resources/sql/update_redirect_code_dict_order.sql @@ -0,0 +1,2 @@ +update sys_data_dictionary_item set item_sort=1 where dictionary_id=(select id from sys_data_dictionary_name where mark='REDIRECT_RESPONSE_CODE') and item_code='302'; +update sys_data_dictionary_item set item_sort=2 where dictionary_id=(select id from sys_data_dictionary_name where mark='REDIRECT_RESPONSE_CODE') and item_code='301';