aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPDotExporter.m
diff options
context:
space:
mode:
authordmoagx <post@wickenrode.com>2013-04-21 21:05:56 +0000
committerdmoagx <post@wickenrode.com>2013-04-21 21:05:56 +0000
commit974a17c6403e75eb23eef4a270ff0d70b37c91de (patch)
tree1c72d942e561659508c67210d926f0e94630a900 /Source/SPDotExporter.m
parent758789b3bba80f91182730841cb54ba0f3c86de4 (diff)
downloadsequelpro-974a17c6403e75eb23eef4a270ff0d70b37c91de.tar.gz
sequelpro-974a17c6403e75eb23eef4a270ff0d70b37c91de.tar.bz2
sequelpro-974a17c6403e75eb23eef4a270ff0d70b37c91de.zip
* Composite Foreign Keys will now show all columns in Relation view (workaround)
Diffstat (limited to 'Source/SPDotExporter.m')
-rw-r--r--Source/SPDotExporter.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPDotExporter.m b/Source/SPDotExporter.m
index 62cfbc48..13bf13a5 100644
--- a/Source/SPDotExporter.m
+++ b/Source/SPDotExporter.m
@@ -175,10 +175,10 @@
}
// Get the column references. Currently the columns themselves are an array,
- // while reference columns and tables are comma separated if there are more than
+ // while tables are comma separated if there are more than
// one. Only use the first of each for the time being.
NSArray *originColumns = [constraint objectForKey:@"columns"];
- NSArray *referenceColumns = [[constraint objectForKey:@"ref_columns"] componentsSeparatedByString:@","];
+ NSArray *referenceColumns = [constraint objectForKey:@"ref_columns"];
NSString *extra = @"";