0

I'd like to be able to force the PACKAGE->add_columns() to not lc everything. I know there's a preserve_case option, but I can't figure out where to put it. Is there a 'myproj_schema.pl' file I can create in /conf ?

peak
  • 105,803
  • 17
  • 152
  • 177
Joe
  • 61
  • 2

1 Answers1

2
make_schema_at(
    'My::Schema',
    {   dump_directory  => "$FindBin::Bin/../lib/",
        use_namespaces  => 1,
        preserve_case   => 1,
        },
    $connect_info
    );
Paul Hutchinson
  • 789
  • 1
  • 12
  • 27