sloppy work on passing all of the test and reimplementing most of the features from encode

This commit is contained in:
collerek
2020-08-04 18:44:17 +02:00
parent a6f8fc6d7e
commit 345fd227d1
9 changed files with 648 additions and 24 deletions

View File

@ -1,4 +1,5 @@
from orm.fields import Integer, BigInteger, Boolean, Time, Text, String, JSON, DateTime, Date, Decimal, Float
from orm.fields import Integer, BigInteger, Boolean, Time, Text, String, JSON, DateTime, Date, Decimal, Float, \
ForeignKey
from orm.models import Model
__all__ = [
@ -13,5 +14,6 @@ __all__ = [
"Date",
"Decimal",
"Float",
"ForeignKey",
"Model"
]