初始化 V1
This commit is contained in:
8
sql/tools/.gitignore
vendored
Normal file
8
sql/tools/.gitignore
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
# 忽略python虚拟环境
|
||||
.env
|
||||
.venv
|
||||
env/
|
||||
venv/
|
||||
ENV/
|
||||
env.bak/
|
||||
venv.bak/
|
||||
130
sql/tools/README.md
Normal file
130
sql/tools/README.md
Normal file
File diff suppressed because it is too large
Load Diff
844
sql/tools/convertor.py
Normal file
844
sql/tools/convertor.py
Normal file
File diff suppressed because it is too large
Load Diff
157
sql/tools/docker-compose.yaml
Normal file
157
sql/tools/docker-compose.yaml
Normal file
File diff suppressed because it is too large
Load Diff
3
sql/tools/oracle/1_create_user.sql
Normal file
3
sql/tools/oracle/1_create_user.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
ALTER SESSION SET CONTAINER=XEPDB1;
|
||||
CREATE USER ROOT IDENTIFIED BY 123456 QUOTA UNLIMITED ON USERS;
|
||||
GRANT CONNECT, RESOURCE TO ROOT;
|
||||
1
sql/tools/oracle/2_create_schema.sh
Normal file
1
sql/tools/oracle/2_create_schema.sh
Normal file
@@ -0,0 +1 @@
|
||||
sqlplus -s ROOT/123456@//localhost/XEPDB1 @/tmp/schema.sql
|
||||
5
sql/tools/sqlserver/create_schema.sh
Normal file
5
sql/tools/sqlserver/create_schema.sh
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P ${SA_PASSWORD} -Q "CREATE DATABASE [ruoyi-vue-pro];
|
||||
GO"
|
||||
/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P ${SA_PASSWORD} -d 'ruoyi-vue-pro' -i /tmp/schema.sql
|
||||
382
sql/tools/standalone-logs/alipay-jraft.log.2025-06-05.0
Normal file
382
sql/tools/standalone-logs/alipay-jraft.log.2025-06-05.0
Normal file
File diff suppressed because it is too large
Load Diff
758
sql/tools/standalone-logs/alipay-jraft.log.2025-06-09.0
Normal file
758
sql/tools/standalone-logs/alipay-jraft.log.2025-06-09.0
Normal file
File diff suppressed because it is too large
Load Diff
104
sql/tools/standalone-logs/config-client-request.log.2025-06-05.0
Normal file
104
sql/tools/standalone-logs/config-client-request.log.2025-06-05.0
Normal file
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user