updated schemas
This commit is contained in:
parent
d2983e9bad
commit
c44a724a05
|
|
@ -1,4 +1,4 @@
|
||||||
from schemas.base_imports import (
|
from Schemas.base_imports import (
|
||||||
CrudCollection,
|
CrudCollection,
|
||||||
String,
|
String,
|
||||||
Integer,
|
Integer,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
from schemas.base_imports import (
|
from Schemas.base_imports import (
|
||||||
CrudCollection,
|
CrudCollection,
|
||||||
String,
|
String,
|
||||||
Integer,
|
Integer,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
from schemas.base_imports import (
|
from Schemas.base_imports import (
|
||||||
CrudCollection,
|
CrudCollection,
|
||||||
String,
|
String,
|
||||||
Integer,
|
Integer,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
from api_controllers.postgres.mixin import CrudCollection
|
from ApiControllers.postgres.mixin import CrudCollection
|
||||||
from sqlalchemy.orm import mapped_column, Mapped, relationship
|
from sqlalchemy.orm import mapped_column, Mapped, relationship
|
||||||
from sqlalchemy import (
|
from sqlalchemy import (
|
||||||
String,
|
String,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
from schemas.base_imports import (
|
from Schemas.base_imports import (
|
||||||
CrudCollection,
|
CrudCollection,
|
||||||
String,
|
String,
|
||||||
ForeignKey,
|
ForeignKey,
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
import arrow
|
import arrow
|
||||||
from datetime import timedelta
|
from datetime import timedelta
|
||||||
from typing import List, Union, Any
|
from typing import List, Union, Any
|
||||||
from schemas.base_imports import (
|
|
||||||
|
from Schemas.base_imports import (
|
||||||
CrudCollection,
|
CrudCollection,
|
||||||
mapped_column,
|
mapped_column,
|
||||||
Mapped,
|
Mapped,
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,12 @@
|
||||||
import math
|
import math
|
||||||
import arrow
|
import arrow
|
||||||
|
|
||||||
from datetime import datetime, timedelta
|
from datetime import datetime, timedelta
|
||||||
from decimal import Decimal
|
from decimal import Decimal
|
||||||
from typing import List, Any
|
from typing import List, Any
|
||||||
from fastapi import HTTPException, status
|
from fastapi import HTTPException, status
|
||||||
|
|
||||||
from schemas.base_imports import (
|
from Schemas.base_imports import (
|
||||||
CrudCollection,
|
CrudCollection,
|
||||||
String,
|
String,
|
||||||
ForeignKey,
|
ForeignKey,
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
from typing import Any
|
from typing import Any
|
||||||
from schemas.base_imports import (
|
from Schemas.base_imports import (
|
||||||
CrudCollection,
|
CrudCollection,
|
||||||
String,
|
String,
|
||||||
Integer,
|
Integer,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
from schemas.base_imports import (
|
from Schemas.base_imports import (
|
||||||
CrudCollection,
|
CrudCollection,
|
||||||
String,
|
String,
|
||||||
Integer,
|
Integer,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
from schemas.base_imports import (
|
from Schemas.base_imports import (
|
||||||
CrudCollection,
|
CrudCollection,
|
||||||
String,
|
String,
|
||||||
Integer,
|
Integer,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
from schemas.base_imports import (
|
from Schemas.base_imports import (
|
||||||
CrudCollection,
|
CrudCollection,
|
||||||
String,
|
String,
|
||||||
Integer,
|
Integer,
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
import arrow
|
import arrow
|
||||||
from schemas.base_imports import (
|
from Schemas.base_imports import (
|
||||||
CrudCollection,
|
CrudCollection,
|
||||||
String,
|
String,
|
||||||
Integer,
|
Integer,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
from schemas.base_imports import (
|
from Schemas.base_imports import (
|
||||||
CrudCollection,
|
CrudCollection,
|
||||||
UUID,
|
UUID,
|
||||||
String,
|
String,
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
from schemas.base_imports import (
|
from Schemas.base_imports import (
|
||||||
CrudCollection,
|
CrudCollection,
|
||||||
UUID,
|
UUID,
|
||||||
String,
|
String,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue