From 47260ab9208d57e82ded59a4a7e410cdc32372a2 Mon Sep 17 00:00:00 2001 From: ingoj <120396930+ingoj@users.noreply.github.com> Date: Mon, 16 Sep 2024 17:43:22 +0200 Subject: [PATCH] Fix typo and clarify db-install arbuilder: the file offered for download has an extention of .php (not .tet). I added a note to clarify that arBuilder only creates a step to install a db-table. --- Services/ActiveRecord/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Services/ActiveRecord/README.md b/Services/ActiveRecord/README.md index bfbc280fddcb..427845039fdb 100644 --- a/Services/ActiveRecord/README.md +++ b/Services/ActiveRecord/README.md @@ -425,12 +425,13 @@ install the database on your own, ActiveRecord can install und update the table: Use the already known DB-Update-Steps to generate your AR-Databases. There is a Helper-Script to auto-generate a Installation-Updatestep. Implement these two lines with your ActiveRecord somewhere in ILIAS-Code and run the site. It -generates and Downloads a tet-file with the installation-Step: +generates and Downloads a php-file with the installation-Step: ```php $arBuilder = new arBuilder(new arMessage()); $arBuilder->generateDBUpdateForInstallation(); ``` +The downloaded file can be used to install the appropriate db-table. You can use these methods to delete or truncate your table even in dbupdate-Scripts: