source: web/trunk/lib/Sophie/Base/Result/Paths.pm @ 6

Last change on this file since 6 was 6, checked in by nanardon, 14 years ago
  • add base updater daemon
File size: 476 bytes
Line 
1package Sophie::Base::Result::Paths;
2
3use strict;
4use warnings;
5use base qw(DBIx::Class::Core);
6
7__PACKAGE__->table('d_path');
8__PACKAGE__->add_columns(qw/d_path_key path added updated/);
9__PACKAGE__->set_primary_key('d_path_key');
10#__PACKAGE__->belongs_to(media => 'Sophie::Base::Result::Medias', 'media');
11__PACKAGE__->has_many(MediasPaths => 'Sophie::Base::Result::MediasPaths', 'd_path');
12__PACKAGE__->has_many(Rpmfiles => 'Sophie::Base::Result::RpmFile', 'd_path');
13
14
151;
Note: See TracBrowser for help on using the repository browser.