diff options
author | Yarden Shoham | 2023-02-20 04:30:36 +0200 |
---|---|---|
committer | GitHub | 2023-02-20 10:30:36 +0800 |
commit | 6840a8ccfcdbdcc352eac40a5c9beabf6e7c54ff (patch) | |
tree | 5eabd4e352d3bc9e379a640e9e098107ba5043de /models | |
parent | 8e9814c3469dff1ae595b6f12b60dbb32b15d2b7 (diff) |
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>
Diffstat (limited to 'models')
-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 c7497becd..989a1d6ae 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 |