INSERT INTO base_dept(tenant_id,code,create_time,data_version,last_modify_time,recursion_user_num,pid,id_path,children_num,principal_id,dept_level,current_user_num,custom_order,name_path,last_modify_user,name,id,create_user,delete_flag) VALUES (0,'root',to_date('2020-08-08 00:00:00'),1,to_date('2020-08-08 00:00:00'),0,0,'/',0,1,1,0,1,'→',1,'根部门',1,1,'0'); INSERT INTO base_password(secret_key,password,id,iterations,algorithm) VALUES ('4bfc65773cfbfc4beabb5a89da366fce','992a65ce0896f61540ae3f34a03042e315b48c0e9ed7a48d3cc6e5860440ce9244f55ce448fd8cc4c71852ca1103a5ae7eb96530038babf2480d515fdbd5c7d1',1,11111,'PBKDF2WithHmacSHA256'); INSERT INTO base_user(tenant_id,work_num,create_time,data_version,last_modify_time,main_tenant_id,is_enabled,last_modify_user,mobilephone,name,id,create_user,delete_flag,account,email) VALUES (0,'',to_date('2020-08-08 00:00:00'),1,to_date('2020-08-08 00:00:00'),0,1,1,'','超级管理员',1,1,'0','admin','');
时间: 2024-04-05 14:35:37 浏览: 94
fusionpbx-4.2.zip_freeswitch_full_fusionpbx 4.2_multi-tenant_pbx
这是一个 SQL 语句,包含了向三个表中插入数据的操作。第一个 INSERT INTO 语句向 base_dept 表中插入了一个根部门,第二个 INSERT INTO 语句向 base_password 表中插入了一个密码条目,第三个 INSERT INTO 语句向 base_user 表中插入了一个超级管理员用户。这些数据都是在某个时间点被插入到数据库中的。
阅读全文