From 251a932036dd16755bda49e1ed0db4c6e914fa70 Mon Sep 17 00:00:00 2001 From: Jeffrey Date: Tue, 24 Feb 2026 10:19:14 +0100 Subject: [PATCH] feat: add anchor-links migration --- src/migrations/index.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/migrations/index.ts b/src/migrations/index.ts index 336ce12..95eb1b3 100644 --- a/src/migrations/index.ts +++ b/src/migrations/index.ts @@ -1 +1,9 @@ -export {} +import * as migration_20260224_091812_add_anchor_links from './20260224_091812_add_anchor_links'; + +export const migrations = [ + { + up: migration_20260224_091812_add_anchor_links.up, + down: migration_20260224_091812_add_anchor_links.down, + name: '20260224_091812_add_anchor_links' + }, +];