I am using the PostgresSQL module for SilverStripe.
My issue is that I can define relations with for example:
public static $has_one = array(
'PageRedirect' => 'SiteTree',
);
What this code will do is that it will create the database with a Indice with the naming pattern: ix_tablename_pageredirectId However no foreign key is created.
Further SilverStripe seems to write "0" instead of "null" in columns that are empty relations. So actually you can't even create those foreign key constraints as SilverStripe will constantly violate them.
How can one configure SilverStripe for proper Foreign Key Constraints in the database?
This is SilverStripe v2.4.x