[Racket] Ferti hydroponic nutrient solver, redux.
Ignore unused variable.
db/migrations.rkt
@@ -10,7 +10,7 @@
10
10
11
11
(define (migrate-all!)
12
12
(for ([pair (in-list (unbox migrations-box))])
13
Removed:
(match-define (cons migration-name stmts) pair)
13
Added:
(match-define (cons _ stmts) pair)
14
14
(with-tx (for ([stmt (in-list stmts)])
15
15
(query-exec (current-conn) stmt)))))
16
16