drizzle-kit 0.19.13-ad1f24b → 0.19.13-e99bac1
Sign up to get free protection for your applications and to get access to all the features.
- package/index.cjs +127 -8668
- package/package.json +1 -1
- package/utils.d.ts +5 -5
- package/utils.js +117 -8658
package/package.json
CHANGED
package/utils.d.ts
CHANGED
@@ -16,17 +16,17 @@ export declare const pushSchema: (imports: Record<string, unknown>, db: PgDataba
|
|
16
16
|
export declare const prepareFrom: (connection: DbConnection) => Promise<{
|
17
17
|
db: import("drizzle-orm/node-postgres").NodePgDatabase<Record<string, never>>;
|
18
18
|
type: "pg";
|
19
|
-
schema: Record<string, AnyPgTable<{}> | Relations
|
19
|
+
schema: Record<string, AnyPgTable<{}> | Relations>;
|
20
20
|
} | {
|
21
21
|
db: import("drizzle-orm/mysql2").MySql2Database<Record<string, never>>;
|
22
|
-
type: "
|
23
|
-
schema: Record<string, AnyMySqlTable<{}> | Relations
|
22
|
+
type: "mysql2";
|
23
|
+
schema: Record<string, AnyMySqlTable<{}> | Relations>;
|
24
24
|
} | {
|
25
25
|
db: import("drizzle-orm/better-sqlite3").BetterSQLite3Database<Record<string, never>>;
|
26
26
|
type: "sqlite";
|
27
|
-
schema: Record<string, AnySQLiteTable<{}> | Relations
|
27
|
+
schema: Record<string, AnySQLiteTable<{}> | Relations>;
|
28
28
|
} | {
|
29
29
|
db: import("drizzle-orm/libsql").LibSQLDatabase<Record<string, never>>;
|
30
30
|
type: "sqlite";
|
31
|
-
schema: Record<string, AnySQLiteTable<{}> | Relations
|
31
|
+
schema: Record<string, AnySQLiteTable<{}> | Relations>;
|
32
32
|
}>;
|