-
-
Notifications
You must be signed in to change notification settings - Fork 65
Closed
Labels
enhancementNew feature or requestNew feature or requestquestionFurther information is requestedFurther information is requested
Description
Please add support for "string" column type.
I have this on sqlite
CREATE TABLE "posts" (
"postid" INTEGER,
"authorname" STRING,
);
and it didnt work till i added the "STRING" on the code
if data_type in {"TEXT", "CLOB","STRING"}:
return "TEXT"
Sqlite3 has the "string" as a valid column type as you can see here
https://github.com/WinBuilds/sqlite3/blob/1ef6f39d2238c8d75bb1a555a98e583340a33195/test/types.test#L275
Thank you
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestquestionFurther information is requestedFurther information is requested