Cephalon-Onni/backend/app/models/postgres/images.py
2026-03-29 16:49:52 +02:00

9 lines
298 B
Python

from sqlalchemy import Column, String, Integer
from models.postgres.base import Base
class Image(Base):
__tablename__ = "images"
id = Column(Integer, primary_key=True, autoincrement=True)
unique_name = Column(String, unique=True, index=True)
texture_location = Column(String)