We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 575731a commit 083e8daCopy full SHA for 083e8da
src/backend_api/app/core/models/models.py
@@ -85,11 +85,6 @@ class Item(_ItemBase, Base):
85
# For hypertable specs, see alembic revision `cc29b89156db'
86
__tablename__ = "item"
87
88
- itemId: Mapped[int] = mapped_column(
89
- BigInteger,
90
- Identity(start=1, increment=1),
91
- primary_key=True, # Primary key constraint gets removed on hypertable creation
92
- )
93
prefixes: Mapped[int | None] = mapped_column(SmallInteger)
94
suffixes: Mapped[int | None] = mapped_column(SmallInteger)
95
foilVariation: Mapped[int | None] = mapped_column(SmallInteger)
0 commit comments