25 lines
398 B
Python
25 lines
398 B
Python
from Controllers.Postgres.mixin import CrudCollection
|
|
from sqlalchemy.orm import mapped_column, Mapped, relationship
|
|
from sqlalchemy import (
|
|
String,
|
|
Integer,
|
|
Boolean,
|
|
ForeignKey,
|
|
Index,
|
|
TIMESTAMP,
|
|
Numeric,
|
|
SmallInteger,
|
|
text,
|
|
or_,
|
|
and_,
|
|
func,
|
|
UUID,
|
|
JSON,
|
|
BigInteger,
|
|
Float,
|
|
Text,
|
|
LargeBinary,
|
|
PickleType,
|
|
DATETIME,
|
|
)
|