summaryrefslogtreecommitdiff
path: root/lib/TFLMonitor/Schema/LineStatus.pm
blob: 1718badf777c3cc14115461b427148115409c630 (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
use utf8;
package TFLMonitor::Schema::LineStatus; 
 
# Created by DBIx::Class::Schema::Loader 
# DO NOT MODIFY THE FIRST PART OF THIS FILE 
 
=head1 NAME
 
TFLMonitor::Schema::LineStatus
 
=cut
 
use strict;
use warnings;
 
use base 'DBIx::Class::Core';
 
=head1 TABLE: C<line_status>
 
=cut
 
__PACKAGE__->table("line_status");
 
=head1 ACCESSORS
 
=head2 time
 
  data_type: 'datetime'
  is_nullable: 0
 
=head2 line_id
 
  data_type: 'int'
  is_foreign_key: 1
  is_nullable: 0
 
=head2 status_code
 
  data_type: 'varchar'
  is_foreign_key: 1
  is_nullable: 0
  size: 255
 
=head2 is_active
 
  data_type: 'boolean'
  is_nullable: 0
 
=head2 details
 
  data_type: 'text'
  is_nullable: 1
 
=cut
 
__PACKAGE__->add_columns(
  "time",
  { data_type => "datetime"is_nullable => 0 },
  "line_id",
  { data_type => "int"is_foreign_key => 1, is_nullable => 0 },
  "status_code",
  { data_type => "varchar"is_foreign_key => 1, is_nullable => 0, size => 255 },
  "is_active",
  { data_type => "boolean"is_nullable => 0 },
  "details",
  { data_type => "text"is_nullable => 1 },
);
 
=head1 RELATIONS
 
=head2 line_id
 
Type: belongs_to
 
Related object: L<TFLMonitor::Schema::Line>
 
=cut
 
__PACKAGE__->belongs_to("line_id""TFLMonitor::Schema::Line", { id => "line_id" });
 
=head2 status_code
 
Type: belongs_to
 
Related object: L<TFLMonitor::Schema::Status>
 
=cut
 
__PACKAGE__->belongs_to(
  "status_code",
  "TFLMonitor::Schema::Status",
  { code => "status_code" },
);
 
 
# Created by DBIx::Class::Schema::Loader v0.07040 @ 2014-06-21 15:59:21 
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IwWvmSHYpZfObvzpX/oTNQ 
 
 
# You can replace this text with custom content, and it will be preserved on regeneration 
1;
 
__END__
 
=head1 AUTHOR
 
Gianni Ceccarelli <dakkar@thenautilus.net>
 
=head1 COPYRIGHT AND LICENSE
 
This software is copyright (c) 2012 by Gianni Ceccarelli.
 
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, version 3.
 
=cut