script/lib/iri_tweet/models.py
changeset 412 97c082990f8d
parent 409 f7ceddf99d6d
equal deleted inserted replaced
408:4141c5821c98 412:97c082990f8d
   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)