Skip to content

Commit

Permalink
fix: add new date-related field types
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed Jan 9, 2024
1 parent 92c81df commit 64dcae2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/forklift/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,12 +461,15 @@ def _mirror_fields(source, destination):
'BigInteger': 'BIGINTEGER',
'Blob': 'BLOB',
'Date': 'DATE',
'DateOnly': 'DATEONLY',
'Double': 'DOUBLE',
'Guid': 'GUID',
'Integer': 'LONG',
'Single': 'FLOAT',
'SmallInteger': 'SHORT',
'String': 'TEXT'
'String': 'TEXT',
'TimeOnly': 'TIMEONLY',
'TimestampOffset': 'TIMESTAMPOFFSET'
}

add_fields = []
Expand Down

0 comments on commit 64dcae2

Please sign in to comment.