summaryrefslogtreecommitdiff
path: root/lib/TFLMonitor/Schema/LineStatus.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/TFLMonitor/Schema/LineStatus.pm')
-rw-r--r--lib/TFLMonitor/Schema/LineStatus.pm55
1 files changed, 55 insertions, 0 deletions
diff --git a/lib/TFLMonitor/Schema/LineStatus.pm b/lib/TFLMonitor/Schema/LineStatus.pm
new file mode 100644
index 0000000..ced0012
--- /dev/null
+++ b/lib/TFLMonitor/Schema/LineStatus.pm
@@ -0,0 +1,55 @@
+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 => undef, is_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;