Skip to content

Commit 9482d20

Browse files
committed
Import fix
1 parent 0db7527 commit 9482d20

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

drizzle-orm/src/up-migrations/mssql.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import type { MigrationMeta } from '~/migrator';
2-
import type { MsSqlSession } from '~/mssql-core';
1+
import type { MigrationMeta } from '~/migrator.ts';
2+
import type { MsSqlSession } from '~/mssql-core/session.ts';
33
import { sql } from '~/sql/sql.ts';
44

55
const CURRENT_MIGRATION_TABLE_VERSION = 1;

drizzle-orm/src/up-migrations/mysql.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import type { MigrationMeta } from '~/migrator';
2-
import type { MySqlSession } from '~/mysql-core';
1+
import type { MigrationMeta } from '~/migrator.ts';
2+
import type { MySqlSession } from '~/mysql-core/session.ts';
33
import { type SQL, sql } from '~/sql/sql.ts';
44

55
const CURRENT_MIGRATION_TABLE_VERSION = 1;

drizzle-orm/src/up-migrations/pg.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import type { TablesRelationalConfig } from '~/_relations';
2-
import type { MigrationMeta } from '~/migrator';
3-
import type { NeonHttpSession } from '~/neon-http';
4-
import type { PgAsyncSession } from '~/pg-core';
5-
import type { AnyRelations } from '~/relations';
1+
import type { TablesRelationalConfig } from '~/_relations.ts';
2+
import type { MigrationMeta } from '~/migrator.ts';
3+
import type { NeonHttpSession } from '~/neon-http/session.ts';
4+
import type { PgAsyncSession } from '~/pg-core/async/session.ts';
5+
import type { AnyRelations } from '~/relations.ts';
66
import { type SQL, sql } from '~/sql/sql.ts';
7-
import type { XataHttpSession } from '~/xata-http';
7+
import type { XataHttpSession } from '~/xata-http/session.ts';
88

99
const CURRENT_MIGRATION_TABLE_VERSION = 1;
1010

drizzle-orm/src/up-migrations/singlestore.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import type { MigrationMeta } from '~/migrator';
2-
import type { SingleStoreSession } from '~/singlestore-core';
1+
import type { MigrationMeta } from '~/migrator.ts';
2+
import type { SingleStoreSession } from '~/singlestore-core/session.ts';
33
import { type SQL, sql } from '~/sql/sql.ts';
44

55
const CURRENT_MIGRATION_TABLE_VERSION = 1;

drizzle-orm/src/up-migrations/sqlite.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import type { TablesRelationalConfig } from '~/_relations.ts';
2-
import type { SQLiteD1Session } from '~/d1';
3-
import type { LibSQLSession } from '~/libsql';
4-
import type { MigrationMeta } from '~/migrator';
5-
import type { AnyRelations } from '~/relations';
2+
import type { SQLiteD1Session } from '~/d1/session.ts';
3+
import type { LibSQLSession } from '~/libsql/session.ts';
4+
import type { MigrationMeta } from '~/migrator.ts';
5+
import type { AnyRelations } from '~/relations.ts';
66
import { type SQL, sql } from '~/sql/sql.ts';
7-
import type { SQLiteCloudSession } from '~/sqlite-cloud';
8-
import type { SQLiteSession } from '~/sqlite-core';
9-
import type { SQLiteRemoteSession } from '~/sqlite-proxy';
7+
import type { SQLiteCloudSession } from '~/sqlite-cloud/session.ts';
8+
import type { SQLiteSession } from '~/sqlite-core/session.ts';
9+
import type { SQLiteRemoteSession } from '~/sqlite-proxy/session.ts';
1010

1111
const CURRENT_MIGRATION_TABLE_VERSION = 1;
1212

0 commit comments

Comments
 (0)