1
0
Fork 0

Move config/dbstructure.php to config/dbstructure.config.php

This commit is contained in:
Hypolite Petovan 2018-11-25 01:07:31 -05:00
commit 6eb6cc94c7
4 changed files with 9 additions and 9 deletions

View file

@ -21,7 +21,7 @@ require_once 'include/dba.php';
* This function is responsible for doing post update changes to the data
* (not the structure) in the database.
*
* Database structure changes are done in config/dbstructure.php
* Database structure changes are done in config/dbstructure.config.php
*
* If there is a need for a post process to a structure change, update this file
* by adding a new function at the end with the number of the new DB_UPDATE_VERSION.
@ -33,7 +33,7 @@ require_once 'include/dba.php';
*
* 1. Create a function "update_4712()" here in the update.php
* 2. Apply the needed structural changes in config/dbStructure.php
* 3. Set DB_UPDATE_VERSION in config/dbstructure.php to 4712.
* 3. Set DB_UPDATE_VERSION in config/dbstructure.config.php to 4712.
*
* If you need to run a script before the database update, name the function "pre_update_4712()"
*/