aboutsummaryrefslogtreecommitdiffstats
path: root/core/migrations.php
AgeCommit message (Collapse)AuthorFilesLines
2021-10-02Don't use suppression operator for "session_start"Thomas Lange1-1/+3
Don't use the suppression operator "@" for the "session_start" call in the migrations.php file, but rather check properly if there already is an active session by checking the "session_status" return value.
2021-07-28Migrator: Don't recreate Language object anymoreThomas Lange1-1/+0
Do not force the recreation of the Language object in the migrations.php file anymore by changing the include position of the migrations.php (and the functions.php) in the application.php file a bit to the top.
2021-06-24Implement database schema MigratorThomas Lange1-0/+43
This commit implements the new database schema Migrator which keeps track of the on-disk schema and the schema used by the codebase. It tries to makes future database schema upgrades user-friendlier.