diff options
| author | franck cuny <franck@lumberjaph.net> | 2010-01-23 19:36:24 +0100 |
|---|---|---|
| committer | franck cuny <franck@lumberjaph.net> | 2010-01-23 19:36:24 +0100 |
| commit | a7cc690ced15e1a0191d27034006bfb17a0deeb5 (patch) | |
| tree | 6cef1a2e07727e8cd5249764f461222073e8211a /lib/githubexplorer/Schema/Result/Follow.pm | |
| download | github-explorer-a7cc690ced15e1a0191d27034006bfb17a0deeb5.tar.gz | |
basic github crawler using api
Diffstat (limited to 'lib/githubexplorer/Schema/Result/Follow.pm')
| -rw-r--r-- | lib/githubexplorer/Schema/Result/Follow.pm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/githubexplorer/Schema/Result/Follow.pm b/lib/githubexplorer/Schema/Result/Follow.pm new file mode 100644 index 0000000..735980b --- /dev/null +++ b/lib/githubexplorer/Schema/Result/Follow.pm @@ -0,0 +1,18 @@ +package githubexplorer::Schema::Result::Follow; + +use base qw/DBIx::Class/; + +__PACKAGE__->load_components(qw/Core/); +__PACKAGE__->table('follow'); + +__PACKAGE__->add_columns( + id_follower => { data_type => 'int', }, + id_following => { data_type => 'int' }, +); +__PACKAGE__->set_primary_key(qw/id_follower id_following/); +__PACKAGE__->belongs_to( 'id_follower', + 'githubexplorer::Schema::Result::Profiles' ); +__PACKAGE__->belongs_to( 'id_following', + 'githubexplorer::Schema::Result::Profiles' ); + +1; |
