diff options
author | Yarden Shoham <hrsi88@gmail.com> | 2023-02-20 04:30:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-20 10:30:36 +0800 |
commit | 6840a8ccfcdbdcc352eac40a5c9beabf6e7c54ff (patch) | |
tree | 5eabd4e352d3bc9e379a640e9e098107ba5043de | |
parent | 8e9814c3469dff1ae595b6f12b60dbb32b15d2b7 (diff) | |
download | gitea-6840a8ccfcdbdcc352eac40a5c9beabf6e7c54ff.tar.gz gitea-6840a8ccfcdbdcc352eac40a5c9beabf6e7c54ff.zip |
Add comment marking the end of database migrations in `1.19.0` (#22975)
There will be no more migrations in `1.19.0`
---------
Signed-off-by: Yarden Shoham <hrsi88@gmail.com>
-rw-r--r-- | models/migrations/migrations.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go index c7497becd1..989a1d6ae1 100644 --- a/models/migrations/migrations.go +++ b/models/migrations/migrations.go @@ -461,6 +461,8 @@ var migrations = []Migration{ NewMigration("Alter gpg_key_import content TEXT field to MEDIUMTEXT", v1_19.AlterPublicGPGKeyImportContentFieldToMediumText), // v243 -> v244 NewMigration("Add exclusive label", v1_19.AddExclusiveLabel), + + // Gitea 1.19.0 ends at v244 } // GetCurrentDBVersion returns the current db version |