stiba
Explore posts from serversDTDrizzle Team
•Created by stiba on 6/26/2024 in #help
Migrations complain about missing relations
Here are my schema definitions:
2 replies
DTDrizzle Team
•Created by stiba on 3/18/2023 in #help
Applying migrations with drizzle-orm/pg-core
Perfect, thanks! I was just looking at the generic docs, not the ones for PG.
4 replies
✅ Storing JSON and User data in a multi-tenant application
What about Marten? It's a document database built on top Postgres.
https://martendb.io/
26 replies
`crossOrigin` and `playsInline` types don't work with solid & typescript
<video>
playsinlineA Boolean attribute indicating that the video is to be played "inline", that is within the element's playback area. Note that the absence of this attribute does not imply that the video will always be played in fullscreen.
9 replies
`crossOrigin` and `playsInline` types don't work with solid & typescript
it's not camelcased in solidjs.
try
Edit: Looks like both
crossOrigin
and crossorigin
is supported on link
with solidjs, but it's not a boolean so you'll have to pass it either anonymous
or use-credentials
9 replies
solid-js reactivity eslint with functions
This still doesn't solve my problem though when I have a function that I'm passing down the tree. It takes 2 arguments, and in one of the children I create a new function that passes the first argument, and then the child only needs to supply one argument
6 replies