Open ansarizafar opened 1 year ago
@AndriiSherman Is it possible to add push schema feature to Drizzle-ORM?
Would be very useful to generate memory based SQL clients for testing purposes:
import { createClient } from '@libsql/client';
import { pushSchema } from 'drizzle-orm';
import { drizzle } from 'drizzle-orm/libsql';
import { schema } from './schema';
export const createDatabaseClientMock = () => {
const client = createClient({ url: ':memory:' });
const db = drizzle(client);
await pushSchema(schema, db)
return db;
};
Would be very useful to generate memory based SQL clients for testing purposes:
import { createClient } from '@libsql/client'; import { pushSchema } from 'drizzle-orm'; import { drizzle } from 'drizzle-orm/libsql'; import { schema } from './schema'; export const createDatabaseClientMock = () => { const client = createClient({ url: ':memory:' }); const db = drizzle(client); await pushSchema(schema, db) return db; };
@hugo082
I'm using v0.30.10, it does not have this command.
Module '"drizzle-orm"' has no exported member 'pushSchema'
Is there any progress on this issue? Push feature will also be useful for migrating PGLite schema.
Kit now exposes it's API which includes a push function. This isn't documented though.
@L-Mario564 Could you please share a code sample or a link about Kit push API?
Describe what you want
I am using libsql and I am building a desktop and a mobile app. I can't bundle migrations folder with my app. Dirizzle-kit has a push command for altering database schema rapidly but we can't push changes with drizzle-orm at runtime.
lLike migrate, please provide a push function with drizzle-orm for schema modifications without first generating the migration scripts.