0.04999_06 Not Yet Released
- Singularise table monikers by default
+ - Strip trailing _id from single-column belongs_to relationships
0.04999_05 Mon Apr 14, 2008
- Fix limiting table list to the specified schema for DB2
my $remote_relname;
# for single-column case, set the remote relname to the column
- # name, to make filter accessors work
+ # name, to make filter accessors work, but strip trailing _id
if(scalar keys %cond == 1) {
- my ($col) = keys %cond;
- $remote_relname = $self->_inflect_singular($cond{$col});
+ my ($col) = values %cond;
+ $col =~ s/_id$//;
+ $remote_relname = $self->_inflect_singular($col);
}
else {
$remote_relname = $self->_inflect_singular(lc $remote_table);
isa_ok( $obj6->loader_test2, $class2);
isa_ok( $obj6->loader_test5, $class5);
- ok($class6->column_info('loader_test2')->{is_foreign_key}, 'Foreign key detected');
+ ok($class6->column_info('loader_test2_id')->{is_foreign_key}, 'Foreign key detected');
ok($class6->column_info('id')->{is_foreign_key}, 'Foreign key detected');
ok($class6->column_info('id2')->{is_foreign_key}, 'Foreign key detected');
CREATE TABLE loader_test6 (
id INTEGER NOT NULL PRIMARY KEY,
Id2 INTEGER,
- loader_test2 INTEGER,
+ loader_test2_id INTEGER,
dat VARCHAR(8),
- FOREIGN KEY (loader_test2) REFERENCES loader_test2 (id),
+ FOREIGN KEY (loader_test2_id) REFERENCES loader_test2 (id),
FOREIGN KEY(id,Id2) REFERENCES loader_test5 (id1,iD2)
) $self->{innodb}
},
- (q{ INSERT INTO loader_test6 (id, id2,loader_test2,dat) } .
+ (q{ INSERT INTO loader_test6 (id, id2,loader_test2_id,dat) } .
q{ VALUES (1, 1,1,'aaa') }),
qq{