marshymallow
marshymallow
KKysely
Created by marshymallow on 12/23/2023 in #help
Sqlite JSON
Thanks! That works. Is there a similar date column type or must I use ColumnType<Date, string, never>?
8 replies
KKysely
Created by marshymallow on 12/23/2023 in #help
Sqlite JSON
Also, having a similar issue with dates... I am telling Kysely that the column is to be of type "date", so I expect it to parse my dates before and after database retreival. But, it appears that I must stringify and parse them myself.
8 replies
KKysely
Created by marshymallow on 12/23/2023 in #help
Sqlite JSON
Right now, I have
interface MyTable {
myColumn: Array<string>, // or this could just be "object" for JSON
}
interface MyTable {
myColumn: Array<string>, // or this could just be "object" for JSON
}
8 replies