Stevie Clifton
Stevie Clifton
The migration script example in the ideal stack has the following line: `col.defaultTo("now()")`. It should be: ``` col.defaultTo(sql`now()`) ``` Otherwise the default date is hardcoded when the table is created...
The mysql Timestamp column's `mapToDriverValue` method was incorrectly truncating everything after the seconds when serializing Date objects to strings. This commit preserves the milliseconds. Note that this only applies to...
### What version of `drizzle-orm` are you using? 0.26.0 ### What version of `drizzle-kit` are you using? 0.18.0 ### Describe the Bug Create a mysql table with a timestamp field...