Created
October 28, 2009 21:00
-
-
Save rbuels/220832 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| BEGIN { | |
| package Foo::Schema::MyTable; | |
| .... #define the dbic stuff | |
| package Foo::Schema; | |
| __PACKAGE__->load_classes('Foo::Table'); | |
| } | |
| BEGIN { | |
| package Bar::Schema::MyOtherTable; | |
| .... #define the dbic stuff | |
| package Bar::Schema; | |
| __PACKAGE__->load_classes('Bar::Schema::MyOtherTable'); | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment