Given a database model like:
User
name Text
UniqueUserName name
createdAt UTCTime MigrationOnly default='now()'
updatedAt UTCTime MigrationOnly default='now()'
the SQL generated in this function will create something like:
INSERT INTO "user" (name, created_at, updated_at) VALUES (?)
This will fail with an error:
INSERT has more target columns than expressions