Skip to content

Commit 10172bb

Browse files
committed
fix: notice v0.4.7 version and display style
1 parent df85500 commit 10172bb

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

docs/docs/installation/sourcecode.md

+14-5
Original file line numberDiff line numberDiff line change
@@ -363,21 +363,30 @@ Modify the `.env` file to use llama.cpp, and then you can start the service by r
363363
]}>
364364
<TabItem value="sqlite" label="sqlite">
365365

366-
```python
366+
:::tip NOTE
367+
367368
You do not need to separately create the database tables related to the DB-GPT application in SQLite;
368369
they will be created automatically for you by default.
369370

370-
```
371+
:::
372+
371373

372374
</TabItem>
373375
<TabItem value="mysql" label="MySQL">
374-
375-
1.execute MySQL script to create database and tables.
376+
377+
:::warning NOTE
378+
379+
After version 0.4.7, we removed the automatic generation of MySQL database Schema for safety.
380+
381+
:::
382+
383+
1. Frist, execute MySQL script to create database and tables.
376384

377385
```python
378386
$ mysql -h127.0.0.1 -uroot -p{your_password} < ./assets/schema/dbgpt.sql
379387
```
380-
2.set DB-GPT MySQL database settings in `.env` file.
388+
389+
2. Second, set DB-GPT MySQL database settings in `.env` file.
381390

382391
```python
383392
LOCAL_DB_TYPE=mysql

0 commit comments

Comments
 (0)