Skip to content

Commit d816eba

Browse files
authored
[AI Actions] Renamed database files (#2814)
1 parent cd6d995 commit d816eba

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/ai_actions/install_ai_actions.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,32 +23,32 @@ It also modifies the permission system to account for the new functionality.
2323

2424
## Modify database schema
2525

26-
Create the `add_ai_actions.sql` file that contains the following code.
26+
Create the `ibexa_ai_actions.sql` file that contains the following code.
2727

2828
=== "MySQL"
2929

3030
``` sql
31-
[[= include_file('code_samples/ai_actions/config/mysql/add_ai_actions.sql', 0, None, ' ') =]]
31+
[[= include_file('code_samples/ai_actions/config/mysql/ibexa_ai_actions.sql', 0, None, ' ') =]]
3232
```
3333

3434
=== "PostgreSQL"
3535

3636
``` sql
37-
[[= include_file('code_samples/ai_actions/config/postgresql/add_ai_actions.sql', 0, None, ' ') =]]
37+
[[= include_file('code_samples/ai_actions/config/postgresql/ibexa_ai_actions.sql', 0, None, ' ') =]]
3838
```
3939

4040
Run the following command, where `<database_name>` is the same name that you defined when you [installed [[= product_name =]]](../getting_started/install_ibexa_dxp.md#change-installation-parameters).
4141

4242
=== "MySQL"
4343

4444
```bash
45-
mysql -u <username> -p <password> <database_name> < add_ai_actions.sql
45+
mysql -u <username> -p <password> <database_name> < ibexa_ai_actions.sql
4646
```
4747

4848
=== "PostgreSQL"
4949

5050
```bash
51-
psql <database_name> < add_ai_actions.sql
51+
psql <database_name> < ibexa_ai_actions.sql
5252
```
5353

5454
This command modifies the existing database schema by adding database configuration required for using AI Actions.

0 commit comments

Comments
 (0)