File: Statistic.pm

package info (click to toggle)
libdbix-class-candy-perl 0.002106-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 232 kB
  • ctags: 50
  • sloc: perl: 463; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 278 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
package A::Schema::Result::Statistic;

use DBIx::Class::Candy -base => 'A::Schema::Result';

table 'statistics';

primary_column song_id => { data_type => 'int' };
primary_column playtime => { data_type => 'int' };

belongs_to song => 'A::Schema::Result::Song', 'song_id';

1;