refactor fields into a package

This commit is contained in:
collerek
2020-08-11 17:34:19 +02:00
parent 704e83fed0
commit 867fc691f7
13 changed files with 335 additions and 290 deletions

View File

@ -5,7 +5,7 @@ from random import choices
from typing import Dict, List, TYPE_CHECKING, Union
from weakref import proxy
from orm.fields import ForeignKey
from orm import ForeignKey
if TYPE_CHECKING: # pragma no cover
from orm.models import FakePydantic, Model