i think most of this works lole

This commit is contained in:
2025-04-24 23:34:13 -04:00
parent 210a033695
commit 56ba750aad
50 changed files with 154001 additions and 2606 deletions

View File

@ -1,3 +1,4 @@
from app.models.critical_error_log import CriticalErrorLog
from app.models.file import File
from app.models.inventory_management import (
PhysicalItem,
@ -6,25 +7,32 @@ from app.models.inventory_management import (
OpenEvent,
Vendor,
Customer,
Transaction
Transaction,
SealedExpectedValue,
Marketplace,
MarketplaceListing
)
from app.models.tcgplayer_products import (
MTGJSONCard,
MTGJSONSKU,
TCGPlayerProduct,
TCGPlayerCategory,
TCGPlayerGroup,
TCGPlayerPriceHistory,
MostRecentTCGPlayerPrice
)
from app.models.mtgjson_card import MTGJSONCard
from app.models.mtgjson_sku import MTGJSONSKU
from app.models.product import Product
from app.models.tcgplayer_category import TCGPlayerCategory
from app.models.tcgplayer_group import TCGPlayerGroup
from app.models.tcgplayer_inventory import TCGPlayerInventory
from app.models.tcgplayer_order import (
TCGPlayerOrder,
TCGPlayerOrderTransaction,
TCGPlayerOrderProduct,
TCGPlayerOrderRefund
)
from app.models.tcgplayer_price_history import TCGPlayerPriceHistory
from app.models.tcgplayer_product import TCGPlayerProduct
from app.models.tcgplayer_inventory import TCGPlayerInventory
from app.models.manabox_import_staging import ManaboxImportStaging
# This makes all models available for Alembic to discover
__all__ = [
'CriticalErrorLog',
'File',
'PhysicalItem',
'InventoryItem',
@ -33,16 +41,20 @@ __all__ = [
'Vendor',
'Customer',
'Transaction',
'SealedExpectedValue',
'Marketplace',
'MarketplaceListing',
'MTGJSONCard',
'MTGJSONSKU',
'Product',
'TCGPlayerProduct',
'TCGPlayerCategory',
'TCGPlayerGroup',
'TCGPlayerInventory',
'ManaboxImportStaging',
'TCGPlayerOrder',
'TCGPlayerOrderTransaction',
'TCGPlayerOrderProduct',
'TCGPlayerOrderRefund',
'TCGPlayerPriceHistory',
'TCGPlayerProduct'
'MostRecentTCGPlayerPrice'
]