Files
payload/packages/db-sqlite/src/defaultSnapshot.ts
Dan Ribbens 93545f3103 fix(db-postgres, db-sqlite)!: bump drizzle-kit drizzle-orm @libsql/client (#8617)
Inheriting all the fixes from drizzle moving to latest versions

## BREAKING CHANGES
If you have a prior version of @libsql/client installed in your project,
you must upgrade to 0.14.0
2024-10-15 20:20:50 +00:00

16 lines
356 B
TypeScript

import type { DrizzleSQLiteSnapshotJSON } from 'drizzle-kit/api'
export const defaultDrizzleSnapshot: DrizzleSQLiteSnapshotJSON = {
id: '00000000-0000-0000-0000-000000000000',
_meta: {
columns: {},
tables: {},
},
dialect: 'sqlite',
enums: {},
prevId: '00000000-0000-0000-0000-00000000000',
tables: {},
version: '6',
views: {},
}