summaryrefslogtreecommitdiff
path: root/lib/TFLMonitor/Schema/LineStatus.pm
blob: c6bb3c200bd2efddf0136defc7f796a9d4616d42 (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
package TFLMonitor::Schema::LineStatus; 
 
use strict;
use warnings;
 
use base 'DBIx::Class';
 
__PACKAGE__->load_components("Core");
__PACKAGE__->table("line_status");
__PACKAGE__->add_columns(
  "time",
  {
    data_type => "DATETIME",
    default_value => undef,
    is_nullable => 0,
    size => undef,
  },
  "line_id",
  { data_type => "INT"default_value => undefis_nullable => 0, size => undef },
  "status_code",
  {
    data_type => "VARCHAR",
    default_value => undef,
    is_nullable => 0,
    size => 255,
  },
  "is_active",
  {
    data_type => "BOOLEAN",
    default_value => undef,
    is_nullable => 0,
    size => undef,
  },
  "details",
  {
    data_type => "TEXT",
    default_value => undef,
    is_nullable => 1,
    size => undef,
  },
);
__PACKAGE__->belongs_to("line_id""TFLMonitor::Schema::Line", { id => "line_id" });
__PACKAGE__->belongs_to(
  "status_code",
  "TFLMonitor::Schema::Status",
  { code => "status_code" },
);
 
 
# Created by DBIx::Class::Schema::Loader v0.04006 @ 2010-06-21 23:15:30 
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1b6y2NC79YSXgyECT4uEzQ 
 
 
# 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