Skip to content

Commit

Permalink
fix(palletjack): add additional date fields to be transformed
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed Oct 7, 2024
1 parent 98afa16 commit b1c4911
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/palletjack/src/roadkill/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,20 @@
LOG_FILE_NAME = "log"

TABLES = [
#: ('table_name', 'id_column', 'geog_column', 'int_fields')
#: ('table_name', 'id_column', 'geog_column', 'int_fields', 'date_fields')
(
"agol_pickup_reports",
"report_id",
"animal_location",
["report_id", "species_id", "user_id"],
[],
["submit_date", "pickup_date"],
),
(
"agol_public_reports",
"report_id",
"animal_location",
["report_id", "species_id", "user_id"],
[],
["submit_date"],
),
(
"agol_routes",
Expand Down

0 comments on commit b1c4911

Please sign in to comment.