From 6840a8ccfcdbdcc352eac40a5c9beabf6e7c54ff Mon Sep 17 00:00:00 2001 From: Yarden Shoham Date: Mon, 20 Feb 2023 04:30:36 +0200 Subject: [PATCH] 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 --- models/migrations/migrations.go | 2 ++ 1 file changed, 2 insertions(+) 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