@@ -167,19 +167,19 @@ export const column = {
167167 options ?: { notNull ?: NotNull } ,
168168 ) => parse ( DataType . blob , options as any ) as ColumnBuilder < TDataType [ 'blob' ] , T , NotNull > ,
169169 /**
170- * Column type: text (serialize with `JSON.parse` and `JSON.stringify`)
170+ * Column type: INTEGER
171171 */
172172 boolean : < T extends BooleanColumnType , DefaultTo extends T | RawBuilder < unknown > | null , NotNull extends boolean | null > (
173173 options ?: Options < T , DefaultTo , NotNull > ,
174174 ) => parse ( DataType . boolean , options as any ) as ColumnBuilder < TDataType [ 'boolean' ] , T , NotNull > ,
175175 /**
176- * Column type: text (serialize with `JSON.parse` and `JSON.stringify`)
176+ * Column type: TEXT (serialize with `JSON.parse` and `JSON.stringify`)
177177 */
178178 date : < T extends Date , DefaultTo extends T | RawBuilder < unknown > | null , NotNull extends boolean | null > (
179179 options ?: Options < T , DefaultTo , NotNull > ,
180180 ) => parse ( DataType . date , options as any ) as ColumnBuilder < TDataType [ 'date' ] , T , NotNull > ,
181181 /**
182- * Column type: text (serialize with `JSON.parse` and `JSON.stringify`)
182+ * Column type: TEXT (serialize with `JSON.parse` and `JSON.stringify`)
183183 */
184184 object : < T extends object , DefaultTo extends T | RawBuilder < unknown > | null , NotNull extends boolean | null > (
185185 options ?: Options < T , DefaultTo , NotNull > ,
0 commit comments