File: Schedule.pm

package info (click to toggle)
libhtml-formfu-model-dbic-perl 0.06000-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,252 kB
  • ctags: 147
  • sloc: perl: 2,112; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 612 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package MySchema::Schedule;
use strict;
use warnings;

use base 'DBIx::Class';

__PACKAGE__->load_components(qw/ InflateColumn::DateTime Core /);

__PACKAGE__->table("schedule");

__PACKAGE__->add_columns(
    id     => { data_type => "INTEGER", is_nullable => 0 },
    master => { data_type => "INTEGER", is_nullable => 0 },
    date   => { data_type => "DATETIME", is_nullable => 0 },
    note   => { data_type => "TEXT", is_nullable => 0 },
);

__PACKAGE__->set_primary_key("id");

__PACKAGE__->belongs_to( master => 'MySchema::Master' );

__PACKAGE__->has_many( tasks => 'MySchema::Task', 'schedule' );

1;