Update 'SQLite Config'

Anna Schumaker 2023-03-21 16:55:30 -04:00
parent bab7c35e33
commit e3f87c2fc7
1 changed files with 6 additions and 1 deletions

@ -9,4 +9,9 @@ Emmental configures SQLite by enabling foreign key constraint enforcement and se
### Custom Column Types
| Name | SQLite Type | Python Type |
| ---- | ----------- | -------------------------------------------------------------- |
| PATH | STRING | [pathlib.Path](https://docs.python.org/3/library/pathlib.html) |
| PATH | STRING | [pathlib.Path](https://docs.python.org/3/library/pathlib.html) |
### Custom Functions
| Name | Description |
| -------- | ----------- |
| CASEFOLD | This is the Python [str.casefold()](https://docs.python.org/3/library/stdtypes.html#str.casefold) function with an added `None` check |