diff options
author | Jason Song <i@wolfogre.com> | 2022-12-07 23:58:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-07 09:58:31 -0600 |
commit | 0a85537c79b65f3b10a4b66265a23a8de46a2e43 (patch) | |
tree | 882703646819e463b64fec8fc436b8087ad5fd1b /custom/conf | |
parent | e2fa84fddc80368c0315616870b8c75592397422 (diff) | |
download | gitea-0a85537c79b65f3b10a4b66265a23a8de46a2e43.tar.gz gitea-0a85537c79b65f3b10a4b66265a23a8de46a2e43.zip |
Support disabling database auto migration (#22053)
Gitea will migrate the database model version automatically, but it
should be able to be disabled and keep Gitea shutdown if the version is
not matched.
Diffstat (limited to 'custom/conf')
-rw-r--r-- | custom/conf/app.example.ini | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/custom/conf/app.example.ini b/custom/conf/app.example.ini index bee12ffa9b..03f004ee90 100644 --- a/custom/conf/app.example.ini +++ b/custom/conf/app.example.ini @@ -403,6 +403,9 @@ LOG_SQL = false ; if unset defaults to true ;; ;; Database maximum number of open connections, default is 0 meaning no maximum ;MAX_OPEN_CONNS = 0 +;; +;; Whether execute database models migrations automatically +;AUTO_MIGRATION = true ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |