NerCafel42
Chieftain
- Joined
- Jul 20, 2014
- Messages
- 13
in SQL:
CREATE TABLE Policy_TerrainYieldChanges ('PolicyType' TEXT, 'TerrainType' TEXT, 'YieldType' TEXT, 'Yield' INTEGER);
in XML:
<Table name="Policy_TerrainYieldChanges">
<Column name="PolicyType" type="text" reference="Policies(Type)" />
<Column name="TerrainType" type="text" reference="Terrains(Type)" />
<Column name="YieldType" type="text" reference="Yields(Type)" />
<Column name="Yield" type="integer" /></Table>
I tried to add new table in SQL, in order to make a policy that grants Tundra a culture.
But as you can guess, it didn't work.
So I'm pretty sure that something must be wrong with my SQL,
because I have modded my dll already and there was no problem at all.
So, if I want to build and table written in 'in XML:' with SQL, how should I?
CREATE TABLE Policy_TerrainYieldChanges ('PolicyType' TEXT, 'TerrainType' TEXT, 'YieldType' TEXT, 'Yield' INTEGER);
in XML:
<Table name="Policy_TerrainYieldChanges">
<Column name="PolicyType" type="text" reference="Policies(Type)" />
<Column name="TerrainType" type="text" reference="Terrains(Type)" />
<Column name="YieldType" type="text" reference="Yields(Type)" />
<Column name="Yield" type="integer" /></Table>
I tried to add new table in SQL, in order to make a policy that grants Tundra a culture.
But as you can guess, it didn't work.
So I'm pretty sure that something must be wrong with my SQL,
because I have modded my dll already and there was no problem at all.
So, if I want to build and table written in 'in XML:' with SQL, how should I?