> You don't. A lot of stuff happens at compile time that isn't > effectively repeatable. Your best bet is probably to do > > touch lib/MyApp.pm > > to force the -r reload to fire.
Took your advice. But... touching MyApp.pm doesn't help solve the problem. We ll have to touch lib/MyApp/SchemaClass.pm in order for it to reload the schema. ie., ----------------------------------------------- + package MyApp::SchemaClass; + + use strict; + use base qw/DBIx::Class::Schema::Loader/; + + __PACKAGE__->loader_options( + relationships => 1, + debug => 1, + ); + ----------------------------------------------- Thanks a million for your advice! :) _______________________________________________ List: http://lists.rawmode.org/cgi-bin/mailman/listinfo/dbix-class Wiki: http://dbix-class.shadowcatsystems.co.uk/ IRC: irc.perl.org#dbix-class SVN: http://dev.catalyst.perl.org/repos/bast/trunk/DBIx-Class/ Searchable Archive: http://www.mail-archive.com/[email protected]/
