Can you tell me how to specify a table name? I tried following, but it didn't work. ``` python class Location: __tablename__ = 'Locations' name = Column(String(100)) ```