Oleksii Khomenko

Results 11 comments of Oleksii Khomenko

Hi @palmithor. I tried running drizzle-kit push and drizzle-kit migrate on the `App` table you specified, using [email protected], [email protected], and [email protected] (installed via `bun install`). All of them failed with...

Hi @lukaskoeller. I tried to reproduce the issue using the repository you provided, and everything worked without errors. My steps: 1. `git clone https://github.com/lukaskoeller/drizzle-pglite-open-reproduction` 2. `cd drizzle-pglite-open-reproduction` 3. `pnpm i`...

Hi @everspader. Could you provide step-by-step reproduction instructions alongside your Drizzle schema (`schema.ts`), `drizzle.config.ts`, and the exact versions of `drizzle-orm` and `drizzle-kit`? That would help me reproduce the issue. If...

Also, on the `alternation-engine` branch, you can define a view like this: ```ts const userSubscriptionView1 = pgView('user_subscription_view1').as( (qb) => { return qb .select({ userId: user.id.as('userId'), email: user.email, name: user.name, subscriptionId:...

@ORESoftware Hi. Could you share your schema file (Drizzle tables and enums)? It would also help if you showed the specific changes you made to the schema before generating the...

Hi @grrowl. Could you share your schema - the one you're passing during the DB instance creation? ```ts export const createDb = (d1: D1Database) => drizzle(d1, { schema }); ```

We will think about the best solution for it and take into account @younes101020 comment

Hi @eabnelson. Could you provide the database schema you’re having issues with when running drizzle-kit pull? A small example with DDL statements that can be run on a database would...

This should be fixed in this PR: https://github.com/drizzle-team/waddler/pull/5. However, the API will be slightly changed: - to import standalone sql for ClickHouse dialect, use: ```ts import { sql } from...

Hi @Abhishek21k. I tried to reproduce your issue, but wasn't able to. Here is the example I tested, and it worked as expected: ```ts import { drizzle } from 'drizzle-orm/node-postgres';...