drizzle-kit push keeps trying to drop and recreate the same constraints
Using Zod objects generated from drizzle zod with ts-rest . Parameters interpreted as optional
TypeError: Cannot read properties of undefined (reading 'isRLSEnabled')
Deprecated pgTable signature
database design suggestions

Help with relations: many-to-many + one-to-one
relations
. The schema looks like this (I've ommitted some columns for brevity)
```ts
export const authors = sqliteTable("authors", (t) => ({
authorId: t.integer().primaryKey(),...Possible to infere type from PgEnum?
is there a way to use custom functions without raw sql?
Evolving form data and typesafety .
relation columns name

Error introspecting a MySQL database
Error [ERR_PACKAGE_PATH_NOT_EXPORTED]:
npx drizzle-kit studio
I am getting an error, PFA.
```json
{
"private": true,...
Issue with importing drizzle from drizzle-orm
Race condition executing a common pattern (select or insert)
Drizzle d1 client seems to be missing
import { drizzle } from 'drizzle-orm/d1';
Error
Cannot find module 'drizzle-orm/d1' or its corresponding type declarations.ts(2307)
...
How to Handle Incorrect Schema Generation with Drizzle?
How can i execute an actual `select star` query?
db.select().from(table)
method, but it will generate an sql like select [...Columns] from table
. how can i modify it to actually get select * from table
in the generated sql?How to keep dev and production DBs in sync?
drizzle-kit generate
and drizzle-kit migrate
is working well, however I'm running into an issue where a PR I'm merging has so many schema changes that that the migration files generated for my local config aren't successfully being applied to my production database. I get errors like these:
```...Migration production safety questions (concurrency, rollbacks, out-of-order application)
knex
to get better TS support 🙂 DB is PostgreSQL
, but I think it's not essential
So have few questions which come from experience 🙂 I could spend time indo digging into code, but decided to ask first if someone is aware of behavioural details here....