fix: Add entry in type_map
This commit is contained in:
parent
5562134990
commit
3740f69abd
2 changed files with 2 additions and 0 deletions
|
|
@ -35,6 +35,7 @@ class MariaDBDatabase(Database):
|
|||
'Long Text': ('longtext', ''),
|
||||
'Code': ('longtext', ''),
|
||||
'Text Editor': ('longtext', ''),
|
||||
'Markdown Editor': ('longtext', ''),
|
||||
'Date': ('date', ''),
|
||||
'Datetime': ('datetime', '6'),
|
||||
'Time': ('time', '6'),
|
||||
|
|
|
|||
|
|
@ -40,6 +40,7 @@ class PostgresDatabase(Database):
|
|||
'Long Text': ('text', ''),
|
||||
'Code': ('text', ''),
|
||||
'Text Editor': ('text', ''),
|
||||
'Markdown Editor': ('longtext', ''),
|
||||
'Date': ('date', ''),
|
||||
'Datetime': ('timestamp', None),
|
||||
'Time': ('time', '6'),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue