• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.07033/lib/DBIx/Class/Schema/Loader/RelBuilder/Compat/
1package DBIx::Class::Schema::Loader::RelBuilder::Compat::v0_06;
2
3use strict;
4use warnings;
5use base 'DBIx::Class::Schema::Loader::RelBuilder::Compat::v0_07';
6use mro 'c3';
7
8our $VERSION = '0.07033';
9
10sub _normalize_name {
11    my ($self, $name) = @_;
12
13    $name = $self->_sanitize_name($name);
14
15    return lc $name;
16}
17
18=head1 NAME
19
20DBIx::Class::Schema::Loader::RelBuilder::Compat::v0_06 - RelBuilder for
21compatibility with DBIx::Class::Schema::Loader version 0.06000
22
23=head1 DESCRIPTION
24
25See L<DBIx::Class::Schema::Loader::Base/naming> and
26L<DBIx::Class::Schema::Loader::RelBuilder>.
27
28=head1 AUTHOR
29
30See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
31
32=head1 LICENSE
33
34This library is free software; you can redistribute it and/or modify it under
35the same terms as Perl itself.
36
37=cut
38
391;
40# vim:et sts=4 sw=4 tw=0:
41