Rename all tables/models for Harvest "cache"

make this more explicit, for better naming convention
This commit is contained in:
Lance Edgar 2023-10-04 15:54:52 -05:00
parent 509405cb34
commit aa87ce57be
7 changed files with 324 additions and 88 deletions

View file

@ -2,7 +2,7 @@
################################################################################
#
# Rattail -- Retail Software Framework
# Copyright © 2010-2022 Lance Edgar
# Copyright © 2010-2023 Lance Edgar
#
# This file is part of Rattail.
#
@ -24,5 +24,9 @@
Harvest integration data models
"""
from .harvest import (HarvestUser, HarvestClient, HarvestProject,
from .harvest import (HarvestCacheUser, HarvestCacheClient,
HarvestCacheProject, HarvestCacheTask,
HarvestCacheTimeEntry,
# TODO: deprecate / remove these
HarvestUser, HarvestClient, HarvestProject,
HarvestTask, HarvestTimeEntry)