File: Statistic.pm

package info (click to toggle)
libdbix-class-candy-perl 0.005004-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 264 kB
  • sloc: perl: 623; 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;