Hi, i have the following definition of my table ``...
# exposed
j
Hi, i have the following definition of my table
Copy code
val createdAt = timestamp("createdAt")
val lastRunAt = timestamp("lastRunAt")
val lockedAt = timestamp("lockedAt").nullable()
however, i see that the columns are created as datetime(6) on Mysql. Then dates are stored like 2023-04-11 153138.198168. Is that the expected behaviour? I was expecting a TIMESTAMP column from my previous definition