Hm, I've fixed the "(" bit on the Norton ModSupport.sql that I must have accidentally put in. I did this through the Modding.log.
I also double-checked that I have defined JFD_EAGLES_FORESIGHT_PLAYER_HAS_POLITICAL_PHILOSOPHY_REQ_SET and that it has the same spelling as shown here:
--------------------------------------------------------------------------------------------------------------------------
-- Requirements
--------------------------------------------------------------------------------------------------------------------------
INSERT INTO Requirements
(RequirementId, RequirementType)
VALUES ('JFD_EAGLES_FORESIGHT_PLAYER_HAS_POLITICAL_PHILOSOPHY_REQ', 'REQUIREMENT_PLAYER_HAS_CIVIC');
--------------------------------------------------------------------------------------------------------------------------
-- RequirementArguments
--------------------------------------------------------------------------------------------------------------------------
INSERT INTO RequirementArguments
(RequirementId, Name, Value)
VALUES ('JFD_EAGLES_FORESIGHT_PLAYER_HAS_POLITICAL_PHILOSOPHY_REQ', 'CivicType', 'CIVIC_POLITICAL_PHILOSOPHY');
--------------------------------------------------------------------------------------------------------------------------
-- RequirementSets
--------------------------------------------------------------------------------------------------------------------------
INSERT INTO RequirementSets
(RequirementSetId, RequirementSetType)
VALUES ('JFD_EAGLES_FORESIGHT_PLAYER_HAS_POLITICAL_PHILOSOPHY_REQ_SET', 'REQUIREMENTSET_TEST_ALL');
-------------------------------------------------------------------------------------------------------------------------
-- RequirementSetRequirements
--------------------------------------------------------------------------------------------------------------------------
INSERT INTO RequirementSetRequirements
(RequirementSetId, RequirementId)
VALUES ('JFD_EAGLES_FORESIGHT_PLAYER_HAS_POLITICAL_PHILOSOPHY_REQ_SET', 'JFD_EAGLES_FORESIGHT_PLAYER_HAS_POLITICAL_PHILOSOPHY_REQ');
But for some reason, the Database.log still says I have the same problem, only now there's these as well:
[2884673.981] [Localization]: Validating Foreign Key Constraints...
[2884673.982] [Localization]: Passed Validation.
[2884673.991] [Configuration]: Validating Foreign Key Constraints...
[2884673.992] [Configuration]: Passed Validation.
[2884675.177] [FullTextSearch]: Initializing FullTextSearch
[2884675.615] [Gameplay]: Validating Foreign Key Constraints...
[2884675.628] [Gameplay]: Passed Validation.
[2884677.675] [Configuration] ERROR: no such column: DomainType
[2884677.683] [Configuration]: Validating Foreign Key Constraints...
[2884677.683] [Configuration]: Passed Validation.
[2884677.770] [Database] ERROR: UNIQUE constraint failed: IconTextureAtlases.Name, IconTextureAtlases.IconSize
[2884677.771] [Database] ERROR: UNIQUE constraint failed: IconTextureAtlases.Name, IconTextureAtlases.IconSize
[2884715.351] [FullTextSearch]: FTS - Creating Context
[2884750.336] [Configuration] ERROR: no such column: DomainType
[2884750.344] [Configuration]: Validating Foreign Key Constraints...
[2884750.344] [Configuration]: Passed Validation.
[2884750.437] [Database] ERROR: UNIQUE constraint failed: IconTextureAtlases.Name, IconTextureAtlases.IconSize
[2884750.437] [Database] ERROR: UNIQUE constraint failed: IconTextureAtlases.Name, IconTextureAtlases.IconSize
[2884752.283] [Gameplay] ERROR: near "(": syntax error
[2884752.285] [Gameplay] ERROR: near "LeaderType": syntax error
[2884752.291] [Gameplay] ERROR: FOREIGN KEY constraint failed
[2884752.291] [Gameplay] ERROR: FOREIGN KEY constraint failed
[2884752.291] [Gameplay]: Validating Foreign Key Constraints...
[2884752.299] [Gameplay] ERROR: Invalid Reference on Modifiers.SubjectRequirementSetId - "JFD_EAGLES_FORESIGHT_PLAYER_HAS_POLITICAL_PHILOSOPHY_REQ_SET" does not exist in RequirementSets
[2884752.307] [Gameplay]: Failed Validation.
[2884752.446] [Gameplay]: Validating Foreign Key Constraints...
[2884752.464] [Gameplay]: Passed Validation.
[2884752.561] [Database] ERROR: UNIQUE constraint failed: IconTextureAtlases.Name, IconTextureAtlases.IconSize
[2884752.561] [Database] ERROR: UNIQUE constraint failed: IconTextureAtlases.Name, IconTextureAtlases.IconSize
[2884754.214] [FullTextSearch]: FTS - Creating Context
[2884754.604] [Configuration] ERROR: no such column: DomainType
[2884754.997] [Configuration]: Validating Foreign Key Constraints...
[2884754.997] [Configuration]: Passed Validation.
[2884755.083] [Database] ERROR: UNIQUE constraint failed: IconTextureAtlases.Name, IconTextureAtlases.IconSize
[2884755.083] [Database] ERROR: UNIQUE constraint failed: IconTextureAtlases.Name, IconTextureAtlases.IconSize
[2884761.920] [FullTextSearch]: FullTextSearch - Shutting down
___
Now what?