From 0c78d4095a4e8f57cfa1f64f2e8c7a32722cfe8e Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Tue, 25 Feb 2025 20:40:38 +0100 Subject: [PATCH] Addressed comment: https://github.com/writefreely/writefreely/pull/1145#pullrequestreview-2642070334 --- migrations/migrations.go | 1 + 1 file changed, 1 insertion(+) diff --git a/migrations/migrations.go b/migrations/migrations.go index 6b5b094..ed5a434 100644 --- a/migrations/migrations.go +++ b/migrations/migrations.go @@ -72,6 +72,7 @@ var migrations = []Migration{ New("support password resetting", supportPassReset), // V13 -> V14 New("speed up blog post retrieval", addPostRetrievalIndex), // V14 -> V15 New("support ActivityPub likes", supportRemoteLikes), // V15 -> V16 (v0.16.0) + New("posts.content column size", increasePostContentSize), // V16 -> V17 } // CurrentVer returns the current migration version the application is on