You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Of all the dependencies in my project, sql-migrate is the slowest to build on a clean run. I think this was because of the references to all the database drivers included.
Is there a way to speed this up?
The text was updated successfully, but these errors were encountered:
How about injecting the db engines with sub packages, the way it's done with init(), sql pkg and all it's available drivers?
That way you don't have to worry about heavy pkgs like sqlite.
Had a quick look and it seemed it's only config.go and migrate.go that imports all engines in the same place, so it feels pretty easy to split them up?
Of all the dependencies in my project,
sql-migrate
is the slowest to build on a clean run. I think this was because of the references to all the database drivers included.Is there a way to speed this up?
The text was updated successfully, but these errors were encountered: