"""Country model.""" from sqlalchemy import Column, Integer, String from artist.connectors import mysql class Country(mysql.BaseModel): """Country Model. Represents Country metadata. """ __tablename__ = 'country' id = Column( # noqa Integer, primary_key=True, autoincrement=True, nullable=False) country_code = Column(String)