SHARE
TWEET
Untitled
a guest
Jan 29th, 2015
171
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- class Cart:
- __tablename__ = "carts"
- items = relationship("Item", cascade="all")
- class Item:
- __tablename__ = "items"
- cart_id = Column(Integer, ForeignKey("carts.id"), backref="cart")
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.
