The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package DBIx::Class::Helper::Schema::QuoteNames;
{
  $DBIx::Class::Helper::Schema::QuoteNames::VERSION = '2.019004';
}

# ABSTRACT: force C<quote_names> on

use strict;
use warnings;

use DBIx::Class::Helpers::Util 'normalize_connect_info';

sub connection {
   my $self = shift;

   my $args = normalize_connect_info(@_);
   $args->{quote_names} = 1;

   $self->next::method($args)
}

1;

__END__

=pod

=encoding UTF-8

=head1 NAME

DBIx::Class::Helper::Schema::QuoteNames - force C<quote_names> on

=head1 VERSION

version 2.019004

=head1 SYNOPSIS

 package MyApp::Schema;

 __PACKAGE__->load_components('Helper::Schema::QuoteNames');

=head1 DESCRIPTION

This helper merely forces C<quote_names> on, no matter how your settings are
configured.  You should use it.

=head1 AUTHOR

Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Arthur Axel "fREW" Schmidt.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut