summaryrefslogtreecommitdiff
path: root/packages/db/src/runtime/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/db/src/runtime/index.ts')
-rw-r--r--packages/db/src/runtime/index.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/db/src/runtime/index.ts b/packages/db/src/runtime/index.ts
index 99d2cf31e..7ab5264cd 100644
--- a/packages/db/src/runtime/index.ts
+++ b/packages/db/src/runtime/index.ts
@@ -1,16 +1,16 @@
-import type { SqliteRemoteDatabase } from 'drizzle-orm/sqlite-proxy';
-import { type DBTable, type DBColumn } from '../core/types.js';
import { type ColumnBuilderBaseConfig, type ColumnDataType, sql } from 'drizzle-orm';
import {
+ type IndexBuilder,
+ type SQLiteColumnBuilderBase,
customType,
+ index,
integer,
sqliteTable,
text,
- index,
- type SQLiteColumnBuilderBase,
- type IndexBuilder,
} from 'drizzle-orm/sqlite-core';
-import { isSerializedSQL, type SerializedSQL } from './types.js';
+import type { SqliteRemoteDatabase } from 'drizzle-orm/sqlite-proxy';
+import { type DBColumn, type DBTable } from '../core/types.js';
+import { type SerializedSQL, isSerializedSQL } from './types.js';
export { sql };
export type SqliteDB = SqliteRemoteDatabase;