equal
deleted
inserted
replaced
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) |