We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
With this schema
CREATE TABLE users ( birthday DATE );
I expect a time.Time to be generated
type User struct { Birthday time.Time }
Instead sqlc says unknown Postgres type: date and uses an interface{}
unknown Postgres type: date
interface{}
type User struct { Birthday interface{} }