Warning: Editing the schema (the XML itself) is incredibly dangerous. Adding a column here without rebuilding the binary DB from scratch will brick your game.
<!-- Leagues Table --> <table name="leagues" physicalName="leagues_ng" primaryKey="leagueid"> <field name="leagueid" type="uint" nullable="false"/> <field name="leaguename" type="string" length="128"/> <field name="countryid" type="uint" foreignKey="nations.nationid"/> <field name="level" type="tinyint" min="1" max="10"/> <field name="reputation" type="tinyint" min="1" max="5"/> </table> fifa-ng-db-meta.xml
. It provides the "schema" or instructions that tell the game engine how to read the raw data: Table Definitions Warning: Editing the schema (the XML itself) is
What data types are in each column (e.g., "short," "integer," "string"). !-- Leagues Table -->