Set up the PowerSync Database and wrap it with Drizzle.
Copy
import { wrapPowerSyncWithDrizzle } from '@powersync/drizzle-driver';import { PowerSyncDatabase } from '@powersync/web';import { relations } from 'drizzle-orm';import { index, integer, sqliteTable, text } from 'drizzle-orm/sqlite-core';import { AppSchema } from './schema';export const lists = sqliteTable('lists', { id: text('id'), name: text('name')});export const todos = sqliteTable('todos', { id: text('id'), description: text('description'), list_id: text('list_id'), created_at: text('created_at')});export const listsRelations = relations(lists, ({ one, many }) => ({ todos: many(todos)}));export const todosRelations = relations(todos, ({ one, many }) => ({ list: one(lists, { fields: [todos.list_id], references: [lists.id] })}));export const drizzleSchema = { lists, todos, listsRelations, todosRelations};// As an alternative to manually defining a PowerSync schema, generate the local PowerSync schema from the Drizzle schema with the `DrizzleAppSchema` constructor:// import { DrizzleAppSchema } from '@powersync/drizzle-driver';// export const AppSchema = new DrizzleAppSchema(drizzleSchema);//// This is optional, but recommended, since you will only need to maintain one schema on the client-side// Read on to learn more.export const powerSyncDb = new PowerSyncDatabase({ database: { dbFilename: 'test.sqlite' }, schema: AppSchema});// This is the DB you will use in queriesexport const db = wrapPowerSyncWithDrizzle(powerSyncDb, { schema: drizzleSchema});
The DrizzleAppSchema constructor simplifies the process of integrating Drizzle with PowerSync. It infers the local PowerSync schema from your Drizzle schema definition, providing a unified development experience.
As the PowerSync schema only supports SQLite types (text, integer, and real), the same limitation extends to the Drizzle table definitions.
To use it, define your Drizzle tables and supply the schema to the DrizzleAppSchema function:
Copy
import { DrizzleAppSchema } from '@powersync/drizzle-driver';import { sqliteTable, text } from 'drizzle-orm/sqlite-core';// Define a Drizzle tableconst lists = sqliteTable('lists', { id: text('id').primaryKey().notNull(), created_at: text('created_at'), name: text('name').notNull(), owner_id: text('owner_id')});export const drizzleSchema = { lists};// Infer the PowerSync schema from your Drizzle schemaexport const AppSchema = new DrizzleAppSchema(drizzleSchema);
The PowerSync table definition allows additional options supported by PowerSyncβs app schema beyond that which are supported by Drizzle.
They can be specified as follows. Note that these options exclude indexes as they can be specified in a Drizzle table.
Copy
import { DrizzleAppSchema } from '@powersync/drizzle-driver';// import { DrizzleAppSchema, type DrizzleTableWithPowerSyncOptions} from '@powersync/drizzle-driver'; for TypeScriptconst listsWithOptions = { tableDefinition: logs, options: { localOnly: true } };// const listsWithOptions: DrizzleTableWithPowerSyncOptions = { tableDefinition: logs, options: { localOnly: true } }; for TypeScriptexport const drizzleSchemaWithOptions = { lists: listsWithOptions};export const AppSchema = new DrizzleAppSchema(drizzleSchemaWithOptions);
The Drizzle ORM relies on the underlying PowerSync table definitions which are subject to certain limitations.
This means that most Drizzle constraint features (such as cascading deletes, foreign checks, unique) are currently not supported.