Skip to content

Commit

Permalink
import rather than export customType
Browse files Browse the repository at this point in the history
  • Loading branch information
rizen committed Apr 4, 2024
1 parent aa95b6f commit abdb07c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ving/drizzle/orm.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export { drizzle } from 'drizzle-orm/mysql2';
export { boolean, mysqlEnum, mysqlTable, timestamp, uniqueIndex, varchar, text, datetime, int, json, customType } from 'drizzle-orm/mysql-core';
import { customType } from 'drizzle-orm/mysql-core';
export { boolean, mysqlEnum, mysqlTable, timestamp, uniqueIndex, varchar, text, datetime, int, json } from 'drizzle-orm/mysql-core';
export { like, eq, asc, desc, and, or, ne, gt, gte, lt, lte, inArray, getTableName } from 'drizzle-orm';
export { sql } from 'drizzle-orm/sql';

Expand Down

0 comments on commit abdb07c

Please sign in to comment.