daily pastebin goal
90%
SHARE
TWEET

Untitled

a guest Jan 29th, 2015 171 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class Cart:
  2.   __tablename__ = "carts"
  3.   items = relationship("Item", cascade="all")
  4.  
  5. class Item:
  6.   __tablename__ = "items"
  7.   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. OK, I Understand
 
Top