How do you guys would write the created and updated at column schemas when using sqlite? ```ts createdAt: text("createdAt") .notNull() .default(sql`(CURRENT_TIMESTAMP)`), updatedAt: text('updatedAt') .notNull() .default(sql`(CURRENT_TIMESTAMP)`) .$onUpdate(() => sql`(CURRENT_TIMESTAMP)`), ```