X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2FAuthentication.pod;h=be80e9832b9746bf64ef0427fdfb489e4e18bdb6;hb=7c6892d94938b07b1ec201e2aef9695d2d35d3c5;hp=04106439870e7081c284e2b91648d7a5ce7eff2a;hpb=b0eca006a93b36b6b1a7c83f2ff5508ce618f3e2;p=catagits%2FCatalyst-Manual.git diff --git a/lib/Catalyst/Manual/Tutorial/Authentication.pod b/lib/Catalyst/Manual/Tutorial/Authentication.pod index 0410643..be80e98 100644 --- a/lib/Catalyst/Manual/Tutorial/Authentication.pod +++ b/lib/Catalyst/Manual/Tutorial/Authentication.pod @@ -158,7 +158,7 @@ C: # args: # 1) Name of relationship, DBIC will create accessor with this name # 2) Name of the model class referenced by this relationship - # 3) Column name in *foreign* table + # 3) Column name in *foreign* table (aka, foreign key in peer table) __PACKAGE__->has_many(map_user_role => 'MyApp::Schema::UserRoles', 'user_id'); # many_to_many(): @@ -180,7 +180,7 @@ C: # args: # 1) Name of relationship, DBIC will create accessor with this name # 2) Name of the model class referenced by this relationship - # 3) Column name in *foreign* table + # 3) Column name in *foreign* table (aka, foreign key in peer table) __PACKAGE__->has_many(map_user_role => 'MyApp::Schema::UserRoles', 'role_id');