diff --git a/code_samples/ai_actions/config/mysql/add_ai_actions.sql b/code_samples/ai_actions/config/mysql/ibexa_ai_actions.sql similarity index 100% rename from code_samples/ai_actions/config/mysql/add_ai_actions.sql rename to code_samples/ai_actions/config/mysql/ibexa_ai_actions.sql diff --git a/code_samples/ai_actions/config/postgresql/add_ai_actions.sql b/code_samples/ai_actions/config/postgresql/ibexa_ai_actions.sql similarity index 100% rename from code_samples/ai_actions/config/postgresql/add_ai_actions.sql rename to code_samples/ai_actions/config/postgresql/ibexa_ai_actions.sql diff --git a/docs/ai_actions/install_ai_actions.md b/docs/ai_actions/install_ai_actions.md index 02ac79e109..b09f5c2866 100644 --- a/docs/ai_actions/install_ai_actions.md +++ b/docs/ai_actions/install_ai_actions.md @@ -23,18 +23,18 @@ It also modifies the permission system to account for the new functionality. ## Modify database schema -Create the `add_ai_actions.sql` file that contains the following code. +Create the `ibexa_ai_actions.sql` file that contains the following code. === "MySQL" ``` sql - [[= include_file('code_samples/ai_actions/config/mysql/add_ai_actions.sql', 0, None, ' ') =]] + [[= include_file('code_samples/ai_actions/config/mysql/ibexa_ai_actions.sql', 0, None, ' ') =]] ``` === "PostgreSQL" ``` sql - [[= include_file('code_samples/ai_actions/config/postgresql/add_ai_actions.sql', 0, None, ' ') =]] + [[= include_file('code_samples/ai_actions/config/postgresql/ibexa_ai_actions.sql', 0, None, ' ') =]] ``` Run the following command, where `` is the same name that you defined when you [installed [[= product_name =]]](../getting_started/install_ibexa_dxp.md#change-installation-parameters). @@ -42,13 +42,13 @@ Run the following command, where `` is the same name that you def === "MySQL" ```bash - mysql -u -p < add_ai_actions.sql + mysql -u -p < ibexa_ai_actions.sql ``` === "PostgreSQL" ```bash - psql < add_ai_actions.sql + psql < ibexa_ai_actions.sql ``` This command modifies the existing database schema by adding database configuration required for using AI Actions.