bhakta_jam
bhakta_jam
DTDrizzle Team
Created by Slime on 9/22/2024 in #help
how to reinstall
if you used these commands to install
yarn add drizzle-orm postgres
yarn add -D drizzle-kit
yarn add drizzle-orm postgres
yarn add -D drizzle-kit
then run the same commands but change add to remove
yarn remove drizzle-orm postgres
yarn remove -D drizzle-kit
yarn remove drizzle-orm postgres
yarn remove -D drizzle-kit
7 replies
DTDrizzle Team
Created by bhakta_jam on 9/22/2024 in #help
Only run some queries if conditions changed.
Thank you Winter, great input 👏🏻
4 replies
DTDrizzle Team
Created by Tenkes on 9/22/2024 in #help
PostgresError: foreign key constraint "product_categories_category_id_fk" cannot be implemented
I think you need to define the shape of the id too
id: uuid("id")
.default(sql`gen_random_uuid()`)
.primaryKey(),
id: uuid("id")
.default(sql`gen_random_uuid()`)
.primaryKey(),
14 replies
DTDrizzle Team
Created by Slime on 9/22/2024 in #help
how to reinstall
npm uninstall <package-name>
pnpm remove <package-name>
yarn remove <package-name>
npm uninstall <package-name>
pnpm remove <package-name>
yarn remove <package-name>
7 replies
DTDrizzle Team
Created by bhakta_jam on 9/22/2024 in #help
Only run some queries if conditions changed.
also happy for any feedback that improves my implementation 🙏🏾
4 replies
DTDrizzle Team
Created by Slime on 9/22/2024 in #help
how to reinstall
what package manager did you use?
7 replies