| 2221 | impl = Integer |
| 2222 | |
| 2223 | class HasNonCacheable(ComparableEntity, Base): |
| 2224 | __tablename__ = "non_cacheable" |
| 2225 | |
| 2226 | id = Column(Integer, primary_key=True) |
| 2227 | created = Column(CustomTimeStamp) |
| 2228 | msg_translated = query_expression() |
| 2229 | |
| 2230 | @classmethod |
| 2231 | def insert_data(cls, connection): |