I found an error in assets\DLC\Expansion2\Gameplay\XML\Units\CIV5Units.xml
This line:
Should be:
The current version probably doesn't cause any problems in the game, but it causes an error when validating foreign keys in the database.
This line:
Code:
<Column name="PolicyType" type="text" reference="PolicyTypes(Type)" default="NULL"/>
Should be:
Code:
<Column name="PolicyType" type="text" reference="Policies(Type)" default="NULL"/>
The current version probably doesn't cause any problems in the game, but it causes an error when validating foreign keys in the database.