sql: Scan error on column index 31, name \"createdDate\": unsupported Scan, storing driver.Value type int64 into type *time.Time
I'm aware of issue #35, that is about an unsupported scan for type string to *time.Time. I'm hitting what might be somehow related to this older issue, now with... ``` sql: Scan error on column index 31, name \"createdDate\": unsupported Scan, storing driver.Value type int64 into type *time.Time ``` The DB Browser for SQLite shows type "timestamp" for the table column. What am I doing wrong here or is there (another) conversion variant currently missing? Cheers, TheDiveO
issue