Fix argument to first migration

This commit is contained in:
Sean M. Collins 2025-03-10 17:05:09 -04:00
parent 58f7e0e76a
commit f3788567bb

View File

@ -1,9 +1,9 @@
const jetquery = @import("jetquery"); const jetquery = @import("jetquery");
pub fn up(repo: *jetquery.Repo) !void { pub fn up(repo: anytype) !void {
_ = repo; _ = repo;
} }
pub fn down(repo: *jetquery.Repo) !void { pub fn down(repo: anytype) !void {
_ = repo; _ = repo;
} }