-- Licensed to the Apache Software Foundation (ASF) under one or more -- contributor license agreements. See the NOTICE file distributed with -- this work for additional information regarding copyright ownership. -- The ASF licenses this file to You under the Apache License, Version 2.0 -- (the "License"); you may not use this file except in compliance with -- the License. You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. drop procedure if exists create_key_admin; delimiter ;; create procedure create_key_admin() begin DECLARE loginID varchar(1024); /* check tables exist or not */ if exists (select * from information_schema.columns where table_schema=database() and table_name = 'x_portal_user') then if exists (select * from information_schema.columns where table_schema=database() and table_name = 'x_portal_user_role') then if exists (select * from information_schema.columns where table_schema=database() and table_name = 'x_user') then /* check record for login id keyadmin exist or not */ if not exists (select * from x_user where user_name = 'admin') then INSERT INTO x_user(create_time,update_time,added_by_id,upd_by_id,user_name,descr,status) values (UTC_TIMESTAMP(), UTC_TIMESTAMP(),NULL,NULL,'admin','Administrator',0); end if; if not exists (select * from x_portal_user where login_id = 'keyadmin') then INSERT INTO x_portal_user(create_time,update_time,added_by_id,upd_by_id,first_name,last_name,pub_scr_name,login_id,password,email,status,user_src,notes) VALUES (UTC_TIMESTAMP(),UTC_TIMESTAMP(),NULL,NULL,'keyadmin','','keyadmin','keyadmin','a05f34d2dce2b4688fa82e82a89ba958','keyadmin',1,0,NULL); end if; set loginID = (select id from x_portal_user where login_id = 'keyadmin'); if not exists (select * from x_portal_user_role where user_id =loginID ) then INSERT INTO x_portal_user_role(create_time,update_time,added_by_id,upd_by_id,user_id,user_role,status) VALUES (UTC_TIMESTAMP(),UTC_TIMESTAMP(),NULL,NULL,loginID,'ROLE_KEY_ADMIN',1); end if; if not exists (select * from x_user where user_name = 'keyadmin') then INSERT INTO x_user(create_time,update_time,added_by_id,upd_by_id,user_name,descr,status) values (UTC_TIMESTAMP(), UTC_TIMESTAMP(),NULL,NULL,'keyadmin','keyadmin',0); end if; end if; end if; end if; end;; delimiter ; call create_key_admin(); drop procedure if exists create_key_admin;