script/lib/iri_tweet/models.py
changeset 409 f7ceddf99d6d
parent 392 aa445cd7300e
equal deleted inserted replaced
402:b59be14258dd 409:f7ceddf99d6d
   150     __tablename__ = "tweet_user"
   150     __tablename__ = "tweet_user"
   151     
   151     
   152     id = Column(BigInteger, primary_key=True, autoincrement=False)
   152     id = Column(BigInteger, primary_key=True, autoincrement=False)
   153     id_str = Column(String)
   153     id_str = Column(String)
   154     contributors_enabled = Column(Boolean)
   154     contributors_enabled = Column(Boolean)
   155     created_at = Column(DateTime)
   155     created_at = Column(DateTime, index=True)
   156     description = Column(String)
   156     description = Column(String)
   157     favourites_count = Column(Integer)
   157     favourites_count = Column(Integer)
   158     follow_request_sent = Column(Boolean)
   158     follow_request_sent = Column(Boolean)
   159     followers_count = Column(Integer)
   159     followers_count = Column(Integer)
   160     following = Column(String)
   160     following = Column(String)