The data model of a city in the database.
More...
|
| id = Column(Integer, primary_key=True, nullable=False) |
|
| name = Column(String, nullable=False) |
|
| texture = Column(BLOB, nullable=False) |
|
The data model of a city in the database.
It consists of just a name (which is the path of the file describing the texture) and an array of bytes.
◆ id
DBCreator.Texture.id = Column(Integer, primary_key=True, nullable=False) |
|
static |
◆ name
DBCreator.Texture.name = Column(String, nullable=False) |
|
static |
◆ texture
DBCreator.Texture.texture = Column(BLOB, nullable=False) |
|
static |
The documentation for this class was generated from the following file: