feat: add data fix framework

This commit is contained in:
2026-05-26 13:48:09 +02:00
parent f5dfb91ffe
commit 36213edd60
3 changed files with 116 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
-- +goose Up
CREATE TABLE IF NOT EXISTS data_fixes (
id TEXT PRIMARY KEY,
applied_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP
);
-- +goose Down
DROP TABLE IF EXISTS data_fixes;