5098 Posts in 1518 Topics by 1115 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 139 Views |
-
Silverstripe creates only Indices but no Foreign Keys

25 February 2013 at 2:28pm
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 will code 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 foreigh key contraints as SIlverStripe will constantly violate them.
How can one configure SilverStripe for proper Foreign Key Contraints in the database?
Thanks!
Sebastian
| 139 Views | ||
|
Page:
1
|
Go to Top |

