Initial commit
This commit is contained in:
commit
eba9be67fc
21 changed files with 40258 additions and 0 deletions
10
database/Resolution.py
Normal file
10
database/Resolution.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
from sqlalchemy.orm import mapped_column, Mapped
|
||||
import sqlalchemy as sa
|
||||
|
||||
from database.Base import Base
|
||||
|
||||
|
||||
class ResolutionDB(Base):
|
||||
__tablename__ = "resolution"
|
||||
|
||||
name: Mapped[str] = mapped_column("name", sa.Text, nullable=False, index=True)
|
||||
Loading…
Add table
Add a link
Reference in a new issue