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
16 lines
356 B
TypeScript
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: {},
|
|
}
|