esuls 0.1.4__tar.gz → 0.1.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {esuls-0.1.4/src/esuls.egg-info → esuls-0.1.5}/PKG-INFO +1 -1
- {esuls-0.1.4 → esuls-0.1.5}/pyproject.toml +1 -1
- {esuls-0.1.4 → esuls-0.1.5}/src/esuls/db_cli.py +2 -0
- {esuls-0.1.4 → esuls-0.1.5/src/esuls.egg-info}/PKG-INFO +1 -1
- {esuls-0.1.4 → esuls-0.1.5}/LICENSE +0 -0
- {esuls-0.1.4 → esuls-0.1.5}/README.md +0 -0
- {esuls-0.1.4 → esuls-0.1.5}/setup.cfg +0 -0
- {esuls-0.1.4 → esuls-0.1.5}/src/esuls/__init__.py +0 -0
- {esuls-0.1.4 → esuls-0.1.5}/src/esuls/download_icon.py +0 -0
- {esuls-0.1.4 → esuls-0.1.5}/src/esuls/request_cli.py +0 -0
- {esuls-0.1.4 → esuls-0.1.5}/src/esuls/utils.py +0 -0
- {esuls-0.1.4 → esuls-0.1.5}/src/esuls.egg-info/SOURCES.txt +0 -0
- {esuls-0.1.4 → esuls-0.1.5}/src/esuls.egg-info/dependency_links.txt +0 -0
- {esuls-0.1.4 → esuls-0.1.5}/src/esuls.egg-info/requires.txt +0 -0
- {esuls-0.1.4 → esuls-0.1.5}/src/esuls.egg-info/top_level.txt +0 -0
|
@@ -98,6 +98,8 @@ class AsyncDB(Generic[SchemaType]):
|
|
|
98
98
|
sql_type = "INTEGER"
|
|
99
99
|
elif field_type in (float,):
|
|
100
100
|
sql_type = "REAL"
|
|
101
|
+
elif field_type == bytes:
|
|
102
|
+
sql_type = "BLOB"
|
|
101
103
|
elif field_type in (str, enum.EnumType):
|
|
102
104
|
sql_type = "TEXT"
|
|
103
105
|
elif field_type in (datetime,):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|