Ben Gesoff

Results 4 comments of Ben Gesoff

You'll want to look into the `migrate up` command to actually apply the migrations - the `create` command just creates the files for you to populate

@EightLegs makes sense - in that case I think you need a different tool as this one is mainly good for creating your schema from scratch, rather than exporting an...

Looks like it's possibly related to this, which was fixed in July 2021: https://github.com/gz/rust-cpuid/issues/45. However, wasmer-java's most recent release predates this fix. From what I can see, this library used...

I've run into the same issue. I have this SQL code: ```sql -- name: GetRuns :many SELECT runs.*, scenarios.name AS scenario_name FROM runs JOIN scenarios ON scenarios.id = runs.scenario_id WHERE...