experiments in model and firm py
This commit is contained in:
parent
839e47cf0b
commit
94583af801
4
orm.py
4
orm.py
|
@ -1,8 +1,8 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from sqlalchemy import create_engine, inspect
|
||||
from sqlalchemy.ext.declarative import declarative_base
|
||||
from sqlalchemy import (Column, Integer, DECIMAL, String, ForeignKey, BigInteger,
|
||||
DateTime, PickleType, Boolean, Text)
|
||||
from sqlalchemy import (Column, Integer, DECIMAL, String, ForeignKey,
|
||||
BigInteger, DateTime, PickleType, Boolean, Text)
|
||||
from sqlalchemy.sql import func
|
||||
from sqlalchemy.orm import relationship, Session
|
||||
from sqlalchemy.pool import NullPool
|
||||
|
|
Loading…
Reference in New Issue