mirror of
https://github.com/OnyxALeroy/Cephalon-Onni.git
synced 2026-09-10 17:37:47 +02:00
9 lines
298 B
Python
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)
|