Revision history for DBIx::Class
+ - remove_columns now deletes columns from _columns
+
0.07001 2006-08-18 19:55:00
- add directory argument to deploy()
- support default aliases in many_to_many accessors.
my $schema = DBICTest->init_schema();
-plan tests => 62;
+plan tests => 63;
# figure out if we've got a version of sqlite that is older than 3.2.6, in
# which case COUNT(DISTINCT()) doesn't work
is_deeply([$schema->source('CD')->columns], [qw/cdid artist title year/]);
$schema->source('CD')->remove_columns('year');
is_deeply([$schema->source('CD')->columns], [qw/cdid artist title/]);
+ ok(! exists $schema->source('CD')->_columns->{'year'}, 'year still exists in _columns');
}