mirror of
https://github.com/Hestia-Homes/survey-extraction.git
synced 2026-06-08 11:17:29 +00:00
change name to models
This commit is contained in:
parent
867f086e1e
commit
486de729fb
4 changed files with 5 additions and 5 deletions
|
|
@ -5,8 +5,8 @@ from sqlalchemy import pool
|
|||
from alembic import context
|
||||
from sqlmodel import SQLModel
|
||||
|
||||
from etl.load.topLevel import *
|
||||
from etl.load.preSiteNoteTypes import *
|
||||
from etl.models.topLevel import *
|
||||
from etl.models.preSiteNoteTypes import *
|
||||
|
||||
import os
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ from datetime import datetime
|
|||
from pydantic import EmailStr
|
||||
from sqlalchemy import Column
|
||||
from sqlalchemy.dialects.postgresql import UUID
|
||||
from etl.load.topLevel import BaseModel, Documents
|
||||
from etl.models.topLevel import BaseModel, Documents
|
||||
|
||||
|
||||
class PreSiteNote(BaseModel, table=True):
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
from etl.pdfReader.pdfReaderToText import pdfReaderToText
|
||||
from etl.pdfReader.reportType import ReportType
|
||||
import math
|
||||
from etl.load.preSiteNoteTypes import (
|
||||
from etl.models.preSiteNoteTypes import (
|
||||
AssessorInfo, CompanyInfo,
|
||||
PreSiteNotesSummaryInfo,
|
||||
PreSiteNote,
|
||||
|
|
@ -10,7 +10,7 @@ from etl.load.preSiteNoteTypes import (
|
|||
SolarWaterHeating, HotWaterCylinder, WaterHeating, Lighting, VentilationAndCooling,
|
||||
Door, Walls, Roofs, Floors, PropertyDetail, Windows
|
||||
)
|
||||
from etl.load.topLevel import(
|
||||
from etl.models.topLevel import(
|
||||
Buildings, Documents
|
||||
)
|
||||
import uuid
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue