Skip to content

Commit

Permalink
初始化
Browse files Browse the repository at this point in the history
  • Loading branch information
qixing-ai committed Sep 9, 2024
1 parent 6e170a4 commit 7649cb8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ spring:
application:
name: RapidDataChat-backend
datasource:
url: jdbc:postgresql://pgvector:5432/RapidDataChat_db
url: jdbc:postgresql://pgvector:5432/rapiddatachat_db
username: root
password: root
driver-class-name: org.postgresql.Driver
Expand Down
4 changes: 2 additions & 2 deletions base/initPostgreSQL.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- 创建数据库
CREATE DATABASE RapidDataChat_db;
\c RapidDataChat_db;
CREATE DATABASE rapiddatachat_db;
\c rapiddatachat_db;

-- 数据库信息表,存储不同数据库的连接信息。
CREATE TABLE IF NOT EXISTS database_info
Expand Down

0 comments on commit 7649cb8

Please sign in to comment.