James Reeves
James Reeves
You'll need to create your own function for loading in the CljMigrations. The functions in `ragtime.sql` are tuned to SQL migrations, as the name suggests.
The `Migration` protocol itself is datastore agnostic. There's nothing that ties it inherently to SQL. A Migration could very well be a pair of arbitrary functions, *up* and *down*. The...
It would be the second one, and the database (either a db-spec or a datasource) would be passed directly to the migration functions, rather than via a map.
That would be very helpful!
Thanks for the PR. This *should* be okay, as the javax servlets are deprecated in pretty much everything, and Lein-Ring is not 1.0 so there's no guarantee of backward compatibility....
That looks like a regression. When you say "IG failed" can you give me the function that failed? Or a more complete stack trace? i.e. were you trying to `init`...
Thanks for the stacktrace, but that looks like a different error. Do you have a stacktrace for the original error?
My guess is that this is running afoul of the move from `javax.servlet` to `jakarta.servlet`. If you're using Lein-Ring, that project will need to be updated to use `jakarta.servlet.ServletContextListener` and...
Perhaps the easiest way would be to clone Lein-Ring, then do a search and replace for the namespaces and classes I listed above. Replace them with the Jakarta version, then...
Yes, this package works as far as I'm aware. A week ago someone was telling me that they used this library recently. Which example in particular is failing for you?...