joseferben
joseferben
First of all, thanks for this great project! I am running into an issue while running migrations for following query on MariaDB 10.1.41: ```reason let create_uuid_of = connection => {...
Check: https://github.com/dividat/playos/pull/47 Considering we want the asset pipeline to auto-build as well we might have to solve it on `make` level and not `dune`, unless we use dune as main...
Currently we only support up migrations. It should be possible to provide `down` migrations as well. Add the command `make sihl migrate.down ` to migrate certain number of down migrations....
Currently it is only possible to register migrations as data. It should be possible to create `1_up.sql` and `1_down.sql` and so on in `database/`. The migrations should be registered under...
In order to support concurrent workers we need to split the job dispatching from the queue working. The challenge is to provide an ergonomic API that doesn't overwhelm beginners by...