diff options
| author | Marius Peter <dev@marius-peter.com> | 2025-12-13 22:36:57 +0100 |
|---|---|---|
| committer | Marius Peter <dev@marius-peter.com> | 2025-12-13 22:36:57 +0100 |
| commit | af3e0b808a828819b43b41acbfa9ac25f1bf30d3 (patch) | |
| tree | 7260be3abb2e0ded243b48de7990a192eee536d0 | |
| parent | d0df4316a7f35d735d7c3b2a0e53f2d9b55a24e1 (diff) | |
Ignore unused variable.
| -rw-r--r-- | db/migrations.rkt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrations.rkt b/db/migrations.rkt index db3093c..39490f0 100644 --- a/db/migrations.rkt +++ b/db/migrations.rkt @@ -10,7 +10,7 @@ (define (migrate-all!) (for ([pair (in-list (unbox migrations-box))]) - (match-define (cons migration-name stmts) pair) + (match-define (cons _ stmts) pair) (with-tx (for ([stmt (in-list stmts)]) (query-exec (current-conn) stmt))))) |