Lars-Erik Roald
Lars-Erik Roald
There is something called [db-migrate](https://www.npmjs.com/package/db-migrate), but you still have to write manual sql. I have never tested it. But it has a reasonable amount of downloads and latest release on...
The migration tool you're looking at might not be the best choice because: - It uses local log files to track migrations, which can get messy if you're working in...
@francelwebdev What if you could generate a prisma schema via command cli ? Then you could use prisma for the migrations. At least as a temporary solution. https://github.com/prisma/prisma/discussions/24290
Hello. I am considering creating something proxy-like. So you can add virtual fields or methods to the row. Perhaps wrap it in a Class instance. But I need to consider...
On second thought, I think soft deletes is a totally separate concept that should handled by table mapping instead. So soft deletes, should have it's own issue.
You are right, it is not there. Traditionally, I've approached this by using an explicit binding table. This method establishes a clear one-to-many relationship with the binding table first, and...
When I refer to many to many relationship, I mean modelling the binding table and the joined table as one entity in the orm mapping. Example is [prisma version of...
It is now possible to elevate child columns to parent tables. This pretty much does the same as many-to-many relations. So I am closing the issue. Example from https://github.com/alfateam/orange-orm#user-content-aggregate-results ```javascript...
It works with node:18-alpine ..but only if run npm rebuild first.
I am having the same problem. This is a big show stopper.