Brooks693
DTDrizzle Team
•Created by Opinatus on 3/16/2024 in #help
Drizzle trying to delete PostGIS tables.
I've had the same issues.
I had to resort to using migrations in dev to stop it trying to delete the tables.
2 replies
DTDrizzle Team
•Created by Syuro on 3/1/2024 in #help
one-to-many self-relation
So something like
parentComment: one(comment, {
fields: [comment.parentId],
references: [comment.id],
relationName: "replies"
})
7 replies
DTDrizzle Team
•Created by Syuro on 3/1/2024 in #help
one-to-many self-relation
Do you have the inverse of the relation in the schema as well?
7 replies