Skip to content

Commit

Permalink
added documentation for the mediumText type
Browse files Browse the repository at this point in the history
  • Loading branch information
rizen committed Apr 4, 2024
1 parent 661ee70 commit aa95b6f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ving/drizzle/orm.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ export { boolean, mysqlEnum, mysqlTable, timestamp, uniqueIndex, varchar, text,
export { like, eq, asc, desc, and, or, ne, gt, gte, lt, lte, inArray, getTableName } from 'drizzle-orm';
export { sql } from 'drizzle-orm/sql';

/**
* Generates a `mediumtext` MySQL field through the Drizzle types system.
*/

export const mediumText = customType({
dataType() {
return 'mediumtext';
Expand Down

0 comments on commit aa95b6f

Please sign in to comment.